2
0
mirror of synced 2025-01-11 14:44:12 +00:00

[auth][js] Add missing phoneNumber property

This commit is contained in:
Chris Bianca 2017-11-09 15:18:09 +00:00
parent 33e06f9b6e
commit 89ce31689e

View File

@ -60,6 +60,10 @@ export default class User {
return this._valueOrFalse('isAnonymous'); return this._valueOrFalse('isAnonymous');
} }
get phoneNumber(): String | null {
return this._valueOrNull('phoneNumber');
}
get photoURL(): String | null { get photoURL(): String | null {
return this._valueOrNull('photoURL'); return this._valueOrNull('photoURL');
} }