(path: string)
| 323 | }); |
| 324 | } |
| 325 | orderByChild(path: string): Query { |
| 326 | return Query.fromNative(this.native.orderByChild(path)); |
| 327 | } |
| 328 | orderByKey(): Query { |
| 329 | return Query.fromNative(this.native.orderByKey()); |
| 330 | } |
nothing calls this directly
no test coverage detected