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

Method items

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

Source from the content-addressed store, hash-verified

215 }
216
217 get items(): Reference[] {
218 const items = this.native.items;
219 const count = items.count;
220 const result = [];
221 for (let i = 0; i < count; i++) {
222 result.push(Reference.fromNative(items.objectAtIndex(i)));
223 }
224 return result;
225 }
226
227 get nextPageToken(): string {
228 return this.native.pageToken;

Callers

nothing calls this directly

Calls 2

pushMethod · 0.65
fromNativeMethod · 0.45

Tested by

no test coverage detected