(path: string)
| 559 | } |
| 560 | |
| 561 | child(path: string): DataSnapshot { |
| 562 | return DataSnapshot.fromNative(this.native.childSnapshotForPath(path)); |
| 563 | } |
| 564 | |
| 565 | exists(): boolean { |
| 566 | return this.native?.exists(); |
nothing calls this directly
no test coverage detected