(host: string, port: number)
| 590 | } |
| 591 | |
| 592 | useEmulator(host: string, port: number) { |
| 593 | this.native.useEmulator(host === 'localhost' || host === '127.0.0.1' ? '10.0.2.2' : host, port); |
| 594 | } |
| 595 | |
| 596 | ref(path?: string): Reference { |
| 597 | return Reference.fromNative(this.native.getReference(path || '/')); |
nothing calls this directly
no test coverage detected