(path: string)
| 398 | } |
| 399 | |
| 400 | child(path: string): Reference { |
| 401 | return Reference.fromNative(this.native.child?.(path)); |
| 402 | } |
| 403 | |
| 404 | onDisconnect(): OnDisconnect { |
| 405 | return OnDisconnect.fromNative(this.native.onDisconnect()); |
nothing calls this directly
no test coverage detected