MCPcopy Create free account
hub / github.com/NativeScript/firebase / listAll

Method listAll

packages/firebase-storage/index.android.ts:478–492  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

476 }
477
478 listAll(): Promise<ListResult> {
479 return new Promise((resolve, reject) => {
480 org.nativescript.firebase.storage.FirebaseStorage.StorageReference.listAll(
481 this.native,
482 new org.nativescript.firebase.storage.FirebaseStorage.Callback<com.google.firebase.storage.ListResult>({
483 onError(param0) {
484 reject(FirebaseError.fromNative(param0));
485 },
486 onSuccess(param0) {
487 resolve(ListResult.fromNative(param0));
488 },
489 })
490 );
491 });
492 }
493
494 put(data: Blob | Uint8Array | ArrayBuffer, metadata?: Metadata): Task {
495 if (data instanceof Blob) {

Callers

nothing calls this directly

Calls 1

listAllMethod · 0.65

Tested by

no test coverage detected