(value: string | number | boolean, key?: string)
| 336 | } |
| 337 | |
| 338 | startAt(value: string | number | boolean, key?: string): Query { |
| 339 | if (key) { |
| 340 | return Query.fromNative(this.android.startAt(value as any, key)); |
| 341 | } else { |
| 342 | return Query.fromNative(this.android.startAt(value as any)); |
| 343 | } |
| 344 | } |
| 345 | } |
| 346 | |
| 347 | export class ServerValue { |
nothing calls this directly
no test coverage detected