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

Method delete

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

Source from the content-addressed store, hash-verified

718 }
719
720 delete() {
721 return new Promise<void>((resolve, reject) => {
722 org.nativescript.firebase.ui.FirebaseUI.delete(
723 this.native,
724 lastActivity.get(),
725 new org.nativescript.firebase.ui.FirebaseUI.Callback({
726 onSuccess() {
727 resolve();
728 },
729 onError(error) {
730 const err = FirebaseError.fromNative(error);
731 reject(err);
732 },
733 })
734 );
735 });
736 }
737
738 signOut() {
739 return new Promise<void>((resolve, reject) => {

Callers

nothing calls this directly

Calls 2

deleteMethod · 0.65
getMethod · 0.65

Tested by

no test coverage detected