mirror of
https://github.com/danielsogl/awesome-cordova-plugins.git
synced 2025-02-22 01:19:36 +08:00
parent
2aa73b5546
commit
336b3ff89b
@ -653,26 +653,6 @@ export class LocalNotifications extends IonicNativePlugin {
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* Get a scheduled notification object
|
|
||||||
* @param notificationId {any} The id of the notification to get
|
|
||||||
* @returns {Promise<ILocalNotification>}
|
|
||||||
*/
|
|
||||||
@Cordova()
|
|
||||||
getScheduled(notificationId: any): Promise<ILocalNotification> {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Get a triggered notification object
|
|
||||||
* @param notificationId The id of the notification to get
|
|
||||||
* @returns {Promise<ILocalNotification>}
|
|
||||||
*/
|
|
||||||
@Cordova()
|
|
||||||
getTriggered(notificationId: any): Promise<ILocalNotification> {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Adds a group of actions
|
* Adds a group of actions
|
||||||
* @param groupId The id of the action group
|
* @param groupId The id of the action group
|
||||||
@ -727,20 +707,20 @@ export class LocalNotifications extends IonicNativePlugin {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Get all scheduled notification objects
|
* List of all scheduled notifications
|
||||||
* @returns {Promise<Array<ILocalNotification>>}
|
* @returns {Promise<Array<ILocalNotification>>}
|
||||||
*/
|
*/
|
||||||
@Cordova()
|
@Cordova()
|
||||||
getAllScheduled(): Promise<ILocalNotification[]> {
|
getScheduled(): Promise<ILocalNotification[]> {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Get all triggered notification objects
|
* List of all triggered notifications
|
||||||
* @returns {Promise<Array<ILocalNotification>>}
|
* @returns {Promise<Array<ILocalNotification>>}
|
||||||
*/
|
*/
|
||||||
@Cordova()
|
@Cordova()
|
||||||
getAllTriggered(): Promise<ILocalNotification[]> {
|
getTriggered(): Promise<ILocalNotification[]> {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user