[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
1 changed files with 4 additions and 0 deletions

View File

@ -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');
}