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

Method signOut

packages/firebase-ui/index.android.ts:738–754  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

736 }
737
738 signOut() {
739 return new Promise<void>((resolve, reject) => {
740 org.nativescript.firebase.ui.FirebaseUI.signOut(
741 this.native,
742 lastActivity.get(),
743 new org.nativescript.firebase.ui.FirebaseUI.Callback({
744 onSuccess() {
745 resolve();
746 },
747 onError(error) {
748 const err = FirebaseError.fromNative(error);
749 reject(err);
750 },
751 })
752 );
753 });
754 }
755}

Callers

nothing calls this directly

Calls 2

signOutMethod · 0.65
getMethod · 0.65

Tested by

no test coverage detected