(value: string | number | boolean, key?: string)
| 210 | } |
| 211 | |
| 212 | endAt(value: string | number | boolean, key?: string): Query { |
| 213 | if (key) { |
| 214 | return Query.fromNative(this.native.queryEndingAtValueChildKey(value, key)); |
| 215 | } else { |
| 216 | return Query.fromNative(this.native.queryEndingAtValue(value)); |
| 217 | } |
| 218 | } |
| 219 | |
| 220 | equalTo(value: string | number | boolean, key?: string): Query { |
| 221 | if (key) { |
nothing calls this directly
no test coverage detected