fix(local-notifications): add missing priority option

closes #1683
This commit is contained in:
Ibby Hadeed 2017-07-03 07:13:19 -04:00
parent 51fc5332ff
commit e40247c211
No known key found for this signature in database
GPG Key ID: FAFF5A8210728800

View File

@ -89,6 +89,11 @@ export interface ILocalNotification {
* Default: FFFFFF
*/
led?: string;
/**
* Notification priority.
*/
priority?: number;
}
/**