[auth][js] Add missing phoneNumber property
This commit is contained in:
parent
33e06f9b6e
commit
89ce31689e
|
@ -60,6 +60,10 @@ export default class User {
|
|||
return this._valueOrFalse('isAnonymous');
|
||||
}
|
||||
|
||||
get phoneNumber(): String | null {
|
||||
return this._valueOrNull('phoneNumber');
|
||||
}
|
||||
|
||||
get photoURL(): String | null {
|
||||
return this._valueOrNull('photoURL');
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue