11'use strict' ;
22
3- var PushNotifications = {
3+ var PushNotification = {
44 handler : null ,
55 onRegister : false ,
66 onError : false ,
@@ -18,79 +18,79 @@ var PushNotifications = {
1818 }
1919} ;
2020
21- PushNotifications . callNative = function ( name , params ) {
21+ PushNotification . callNative = function ( name , params ) {
2222 /* void */
2323} ;
2424
25- PushNotifications . configure = function ( options ) {
25+ PushNotification . configure = function ( options ) {
2626 /* void */
2727} ;
2828
29- PushNotifications . unregister = function ( ) {
29+ PushNotification . unregister = function ( ) {
3030 /* void */
3131} ;
3232
33- PushNotifications . localNotification = function ( details ) {
33+ PushNotification . localNotification = function ( details ) {
3434 /* void */
3535} ;
3636
37- PushNotifications . localNotificationSchedule = function ( details ) {
37+ PushNotification . localNotificationSchedule = function ( details ) {
3838 /* void */
3939} ;
4040
41- PushNotifications . _onRegister = function ( token ) {
41+ PushNotification . _onRegister = function ( token ) {
4242 /* void */
4343} ;
4444
45- PushNotifications . _onRemoteFetch = function ( notificationData ) {
45+ PushNotification . _onRemoteFetch = function ( notificationData ) {
4646 /* void */
4747} ;
4848
49- PushNotifications . _onNotification = function ( data , isFromBackground = null ) {
49+ PushNotification . _onNotification = function ( data , isFromBackground = null ) {
5050 /* void */
5151} ;
5252
53- PushNotifications . _onPermissionResult = function ( ) {
53+ PushNotification . _onPermissionResult = function ( ) {
5454 /* void */
5555} ;
5656
57- PushNotifications . _requestPermissions = function ( ) {
57+ PushNotification . _requestPermissions = function ( ) {
5858 /* void */
5959} ;
6060
61- PushNotifications . requestPermissions = function ( ) {
61+ PushNotification . requestPermissions = function ( ) {
6262 /* void */
6363} ;
6464
65- PushNotifications . presentLocalNotification = function ( ) {
65+ PushNotification . presentLocalNotification = function ( ) {
6666 /* void */
6767} ;
6868
69- PushNotifications . scheduleLocalNotification = function ( ) {
69+ PushNotification . scheduleLocalNotification = function ( ) {
7070 /* void */
7171} ;
7272
73- PushNotifications . cancelLocalNotifications = function ( ) {
73+ PushNotification . cancelLocalNotifications = function ( ) {
7474 /* void */
7575} ;
7676
77- PushNotifications . cancelAllLocalNotifications = function ( ) {
77+ PushNotification . cancelAllLocalNotifications = function ( ) {
7878 /* void */
7979} ;
8080
81- PushNotifications . setApplicationIconBadgeNumber = function ( ) {
81+ PushNotification . setApplicationIconBadgeNumber = function ( ) {
8282 /* void */
8383} ;
8484
85- PushNotifications . getApplicationIconBadgeNumber = function ( ) {
85+ PushNotification . getApplicationIconBadgeNumber = function ( ) {
8686 /* void */
8787} ;
8888
89- PushNotifications . popInitialNotification = function ( handler ) {
89+ PushNotification . popInitialNotification = function ( handler ) {
9090 /* void */
9191} ;
9292
93- PushNotifications . abandonPermissions = function ( ) {
93+ PushNotification . abandonPermissions = function ( ) {
9494 /* void */
9595} ;
9696
0 commit comments