UNPKG

firewalk

Version:

A collection traversal library for Firestore

12 lines (11 loc) 288 B
/** * The configuration that a given traverser uses in sequential traversals. */ export interface TraverseEachConfig { /** * The amount of time (in ms) to "sleep" before moving to the next doc. * * @defaultValue 0 */ readonly sleepTimeBetweenDocs: number; }