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

Method listAll

packages/firebase-storage/index.ios.ts:457–467  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

455 }
456
457 listAll(): Promise<ListResult> {
458 return new Promise((resolve, reject) => {
459 this.native.listAllWithCompletion((result, error) => {
460 if (error) {
461 reject(FirebaseError.fromNative(error));
462 } else {
463 resolve(ListResult.fromNative(result));
464 }
465 });
466 });
467 }
468
469 put(data: Blob | Uint8Array | ArrayBuffer, metadata?: Metadata): Task {
470 if (data instanceof Blob) {

Callers

nothing calls this directly

Calls 1

fromNativeMethod · 0.45

Tested by

no test coverage detected