(limitToLast: number)
| 447 | } |
| 448 | |
| 449 | limitToLast(limitToLast: number) { |
| 450 | return Query.fromNative(this.native.queryLimitedToLast(limitToLast)); |
| 451 | } |
| 452 | |
| 453 | onSnapshot(observer: { complete?: () => void; error?: (error: Error) => void; next?: (snapshot: QuerySnapshot) => void }): () => void; |
| 454 | onSnapshot(options: SnapshotListenOptions, observer: { complete?: () => void; error?: (error: Error) => void; next?: (snapshot: QuerySnapshot) => void }): () => void; |
nothing calls this directly
no test coverage detected