()
| 148 | } |
| 149 | |
| 150 | get app(): FirebaseApp { |
| 151 | if (!this._app) { |
| 152 | // @ts-ignore |
| 153 | this._app = FirebaseApp.fromNative(this.native.app); |
| 154 | } |
| 155 | return this._app; |
| 156 | } |
| 157 | |
| 158 | get fetchTimeMillis(): number { |
| 159 | return this.native.getInfo().getFetchTimeMillis?.() * 1000; |
nothing calls this directly
no test coverage detected