(value: string | number | boolean, key?: string)
| 173 | } |
| 174 | } |
| 175 | equalTo(value: string | number | boolean, key?: string): Query { |
| 176 | if (key) { |
| 177 | return Query.fromNative(this.native.equalTo(value as any, key)); |
| 178 | } else { |
| 179 | return Query.fromNative(this.native.equalTo(value as any)); |
| 180 | } |
| 181 | } |
| 182 | keepSynced(bool: boolean) { |
| 183 | this.native?.keepSynced?.(bool); |
| 184 | } |
nothing calls this directly
no test coverage detected