| 344 | } |
| 345 | |
| 346 | export declare class QuerySnapshot implements IQuerySnapshot { |
| 347 | readonly docs: QueryDocumentSnapshot[]; |
| 348 | |
| 349 | readonly empty: boolean; |
| 350 | |
| 351 | readonly metadata: SnapshotMetadata; |
| 352 | |
| 353 | readonly query: Query; |
| 354 | |
| 355 | readonly size: number; |
| 356 | |
| 357 | docChanges(options?: SnapshotListenOptions): DocumentChange[]; |
| 358 | |
| 359 | forEach(callback: (result: QueryDocumentSnapshot, index: number) => void, thisArg?: any): void; |
| 360 | |
| 361 | readonly android: any; |
| 362 | readonly ios: any; |
| 363 | readonly native: any; |
| 364 | } |
| 365 | |
| 366 | export declare class CollectionReference<T extends DocumentData = DocumentData> extends Query<T> implements ICollectionReference<T> { |
| 367 | readonly id: string; |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…