-
Notifications
You must be signed in to change notification settings - Fork 128
Expand file tree
/
Copy pathFirestack.h
More file actions
37 lines (26 loc) · 839 Bytes
/
Firestack.h
File metadata and controls
37 lines (26 loc) · 839 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
//
// Firestack.h
// Created by Ari Lerner on 5/31/16.
// Copyright © 2016 Facebook. All rights reserved.
//
#ifndef Firestack_h
#define Firestack_h
#import <UIKit/UIKit.h>
#import "RCTBridgeModule.h"
#import "RCTEventDispatcher.h"
#import "RCTEventEmitter.h"
@interface Firestack : RCTEventEmitter <RCTBridgeModule> {
}
// + (void) registerForNotification:(NSString *) typeStr andToken:(NSData *)deviceToken;
+ (void) setup:(UIApplication *) application
withLaunchOptions: (NSDictionary *) launchOptions;
+ (id) sharedInstance;
- (void) debugLog:(NSString *)title
msg:(NSString *)msg;
- (void) sendJSEvent:(NSString *)title
props:(NSDictionary *)props;
@property (nonatomic) BOOL debug;
@property (atomic) BOOL configured;
@property (nonatomic, strong) NSDictionary *configuration;
@end
#endif