(path: string)
| 406 | } |
| 407 | |
| 408 | child(path: string): Reference { |
| 409 | return Reference.fromNative(this.native.child(path)); |
| 410 | } |
| 411 | |
| 412 | delete(): Promise<void> { |
| 413 | return new Promise((resolve, reject) => { |
nothing calls this directly
no test coverage detected