(options?: GetOptions)
| 108 | delete(): Promise<void>; |
| 109 | |
| 110 | get(options?: GetOptions): Promise<IDocumentSnapshot<T>>; |
| 111 | |
| 112 | /** NOTE: Although an onCompletion callback can be provided, it will never be called because the snapshot stream is never-ending. */ |
| 113 | onSnapshot(observer: { complete?: () => void; error?: (error: Error) => void; next?: (snapshot: IDocumentSnapshot<T>) => void }): () => void; |
nothing calls this directly
no outgoing calls
no test coverage detected