UNPKG

firewalk

Version:

A collection traversal library for Firestore

14 lines (13 loc) 355 B
/** * Represents an object that contains the details of a traversal. */ export interface TraversalResult { /** * The number of batches that have been retrieved in this traversal. */ readonly batchCount: number; /** * The number of documents that have been retrieved in this traversal. */ readonly docCount: number; }