()
| 518 | } |
| 519 | |
| 520 | get app(): FirebaseApp { |
| 521 | if (this._auth) { |
| 522 | return this._auth.app; |
| 523 | } |
| 524 | if (!this._app) { |
| 525 | // @ts-ignore |
| 526 | this._app = FirebaseApp.fromNative(this.native.getApp()); |
| 527 | } |
| 528 | return this._app; |
| 529 | } |
| 530 | |
| 531 | useEmulator(host: string, port: number) { |
| 532 | this.native.useEmulatorWithHostPort(host, port); |
nothing calls this directly
no test coverage detected