修改pods

This commit is contained in:
2025-09-20 17:13:38 +08:00
parent 7787b3ee30
commit 28ff2b0264
5251 changed files with 345029 additions and 285168 deletions

View File

@@ -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.