123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687 |
-
-
- #import <Foundation/Foundation.h>
- #import <UIKit/UIKit.h>
-
- NS_ASSUME_NONNULL_BEGIN
-
-
- @protocol FIRAuthAppDelegateHandler <NSObject>
-
-
- - (void)setAPNSToken:(NSData *)token;
-
-
- - (void)handleAPNSTokenError:(NSError *)error;
-
-
- - (BOOL)canHandleNotification:(nonnull NSDictionary *)notification;
-
-
- - (BOOL)canHandleURL:(nonnull NSURL *)url;
-
- @end
-
-
- @interface FIRAuthAppDelegateProxy : NSObject
-
-
- - (nullable instancetype)initWithApplication:(nullable UIApplication *)application
- NS_DESIGNATED_INITIALIZER;
-
-
- - (instancetype)init NS_UNAVAILABLE;
-
-
- - (void)addHandler:(__weak id<FIRAuthAppDelegateHandler>)handler;
-
-
- + (nullable instancetype)sharedInstance;
-
- @end
-
- NS_ASSUME_NONNULL_END
|