(path: string)
| 393 | } |
| 394 | |
| 395 | child(path: string): Reference { |
| 396 | return Reference.fromNative(this.native.child(path)); |
| 397 | } |
| 398 | |
| 399 | delete(): Promise<void> { |
| 400 | return new Promise((resolve, reject) => { |
nothing calls this directly
no test coverage detected