(limitToLast: number)
| 22 | limit(limit: number): IQuery<T>; |
| 23 | |
| 24 | limitToLast(limitToLast: number): IQuery<T>; |
| 25 | |
| 26 | /** NOTE: Although an onCompletion callback can be provided, it will never be called because the snapshot stream is never-ending. */ |
| 27 | onSnapshot(observer: { complete?: () => void; error?: (error: Error) => void; next?: (snapshot: IQuerySnapshot<T>) => void }): () => void; |
no outgoing calls
no test coverage detected