feat(push): add missing decorator option to channel

feat(push): add missing decorator option to channel
This commit is contained in:
Daniel Sogl 2018-03-17 00:37:14 +01:00 committed by GitHub
commit 0fe5102801
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -219,6 +219,7 @@ export interface Channel {
id: string;
description: string;
importance: Priority;
sound?: string;
}
export type PushEvent = string;
@ -334,15 +335,19 @@ export class Push extends IonicNativePlugin {
* Create a new notification channel for Android O and above.
* @param channel {Channel}
*/
@Cordova()
createChannel(channel: Channel): Promise<any> { return; }
@Cordova({
callbackOrder: 'reverse'
})
createChannel(channel?: Channel): Promise<any> { return; }
/**
* Delete a notification channel for Android O and above.
* @param id
* @param id {string}
*/
@Cordova()
deleteChannel(id: string): Promise<any> { return; }
@Cordova({
callbackOrder: 'reverse'
})
deleteChannel(id?: string): Promise<any> { return; }
/**
* Returns a list of currently configured channels.