(limitToLast: number)
| 503 | } |
| 504 | |
| 505 | limitToLast(limitToLast: number) { |
| 506 | return Query.fromNative(this.native.limitToLast(limitToLast)); |
| 507 | } |
| 508 | |
| 509 | onSnapshot(observer: { complete?: () => void; error?: (error: Error) => void; next?: (snapshot: QuerySnapshot) => void }): () => void; |
| 510 | onSnapshot(options: SnapshotListenOptions, observer: { complete?: () => void; error?: (error: Error) => void; next?: (snapshot: QuerySnapshot) => void }): () => void; |
nothing calls this directly
no test coverage detected