MCPcopy Index your code
hub / github.com/NativeScript/firebase / updateEmail

Method updateEmail

packages/firebase-auth/index.ios.ts:378–392  ·  view source on GitHub ↗
(email: string)

Source from the content-addressed store, hash-verified

376 }
377
378 updateEmail(email: string): Promise<void> {
379 return new Promise((resolve, reject) => {
380 if (!this.native) {
381 reject();
382 } else {
383 this.native.updateEmailCompletion(email, (error) => {
384 if (error) {
385 reject(FirebaseError.fromNative(error));
386 } else {
387 resolve();
388 }
389 });
390 }
391 });
392 }
393
394 updatePassword(password: string): Promise<void> {
395 return new Promise((resolve, reject) => {

Callers

nothing calls this directly

Calls 1

fromNativeMethod · 0.45

Tested by

no test coverage detected