blob: 47e1a69c893ff86a572bb2318d6a07e0a8b28ab9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#import <Cordova/CDV.h>
#import "AppDelegate.h"
@interface CDVParsePlugin: CDVPlugin
- (void)initialize: (CDVInvokedUrlCommand*)command;
- (void)getInstallationId: (CDVInvokedUrlCommand*)command;
- (void)getInstallationObjectId: (CDVInvokedUrlCommand*)command;
- (void)getSubscriptions: (CDVInvokedUrlCommand *)command;
- (void)subscribe: (CDVInvokedUrlCommand *)command;
- (void)unsubscribe: (CDVInvokedUrlCommand *)command;
- (void)resetBadge: (CDVInvokedUrlCommand *)command;
- (void)trackEvent: (CDVInvokedUrlCommand *)command;
@end
@interface AppDelegate (CDVParsePlugin)
- (void)handleRemoteNotification:(UIApplication *)application payload:(NSDictionary *)payload;
@end
|