aboutsummaryrefslogtreecommitdiffhomepage
path: root/Firebase/Auth
diff options
context:
space:
mode:
authorGravatar Morgan Chen <morganchen12@gmail.com>2018-04-18 12:50:41 -0700
committerGravatar GitHub <noreply@github.com>2018-04-18 12:50:41 -0700
commite6f9451de7f06dc5ff88dd921e56b368e99186b4 (patch)
tree54a2b7fb4eb47b20331d4baf52ad229717c22272 /Firebase/Auth
parent2320ba483752867872ca0128098af4e0eef08164 (diff)
Fix bad type annotation in claims
Diffstat (limited to 'Firebase/Auth')
-rw-r--r--Firebase/Auth/Source/Public/FIRAuthTokenResult.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Firebase/Auth/Source/Public/FIRAuthTokenResult.h b/Firebase/Auth/Source/Public/FIRAuthTokenResult.h
index 41ba008..82a5f1e 100644
--- a/Firebase/Auth/Source/Public/FIRAuthTokenResult.h
+++ b/Firebase/Auth/Source/Public/FIRAuthTokenResult.h
@@ -57,7 +57,7 @@ NS_SWIFT_NAME(AuthTokenResult)
@brief Stores the entire payload of claims found on the ID token. This includes the standard
reserved claims as well as custom claims set by the developer via the Admin SDK.
*/
-@property (nonatomic, readonly) NSDictionary<NSString *, NSString *> *claims;
+@property (nonatomic, readonly) NSDictionary<NSString *, id> *claims;