Merge pull request #111 from eberlitz/patch-1

Fix documentation for LocalNotifications plugin
This commit is contained in:
Ibrahim Hadeed 2016-04-11 10:40:30 -04:00
commit 3ef6e1f628

View File

@ -35,8 +35,8 @@ import {Plugin, Cordova} from './plugin';
* *
* // Schedule delayed notification * // Schedule delayed notification
* LocalNotifications.schedule({ * LocalNotifications.schedule({
* t ext: "Delayed Notification", * text: "Delayed Notification",
* at: new Date(new Date() + 3600), * at: new Date(new Date().getTime() + 3600),
* led: "FF0000", * led: "FF0000",
* sound: null * sound: null
* }); * });
@ -273,4 +273,4 @@ export interface Notification {
* Default: FFFFFF * Default: FFFFFF
*/ */
led? : string led? : string
} }