修改pods
This commit is contained in:
@@ -24,7 +24,7 @@ NS_ASSUME_NONNULL_BEGIN
|
||||
/** @typedef FIRTokenCallback
|
||||
@brief The type of block which gets called when a token is ready.
|
||||
*/
|
||||
typedef void (^FIRTokenCallback)(NSString *_Nullable token, NSError *_Nullable error)
|
||||
typedef void (^FIRTokenCallback)(NSString *_Nullable_result token, NSError *_Nullable error)
|
||||
NS_SWIFT_UNAVAILABLE("Use Swift's closure syntax instead.");
|
||||
|
||||
/// Common methods for Auth interoperability.
|
||||
@@ -34,7 +34,7 @@ NS_SWIFT_NAME(AuthInterop)
|
||||
/// Retrieves the Firebase authentication token, possibly refreshing it if it has expired.
|
||||
- (void)getTokenForcingRefresh:(BOOL)forceRefresh
|
||||
withCallback:
|
||||
(void (^)(NSString *_Nullable token, NSError *_Nullable error))callback
|
||||
(void (^)(NSString *_Nullable_result token, NSError *_Nullable error))callback
|
||||
NS_SWIFT_NAME(getToken(forcingRefresh:completion:));
|
||||
|
||||
/// Get the current Auth user's UID. Returns nil if there is no user signed in.
|
||||
Reference in New Issue
Block a user