This commit is contained in:
Ibrahim Hadeed
2016-04-25 05:32:58 -04:00
9 changed files with 160 additions and 14 deletions
+3 -3
View File
@@ -35,8 +35,8 @@ import {Plugin, Cordova} from './plugin';
*
* // Schedule delayed notification
* LocalNotifications.schedule({
* t ext: "Delayed Notification",
* at: new Date(new Date() + 3600),
* text: "Delayed Notification",
* at: new Date(new Date().getTime() + 3600),
* led: "FF0000",
* sound: null
* });
@@ -273,4 +273,4 @@ export interface Notification {
* Default: FFFFFF
*/
led? : string
}
}