(bool: boolean)
| 226 | } |
| 227 | |
| 228 | keepSynced(bool: boolean) { |
| 229 | this.native?.keepSynced?.(bool); |
| 230 | } |
| 231 | |
| 232 | limitToFirst(limit: number): Query { |
| 233 | return Query.fromNative(this.native.queryLimitedToFirst(limit)); |
nothing calls this directly
no test coverage detected