()
| 205 | } |
| 206 | |
| 207 | get app(): FirebaseApp { |
| 208 | if (!this._app) { |
| 209 | // @ts-ignore |
| 210 | this._app = FirebaseApp.fromNative(this.native.app); |
| 211 | } |
| 212 | return this._app; |
| 213 | } |
| 214 | } |
| 215 | /** |
| 216 | Check whether a regionOrCustomDomain string is a Region for the http trigger, such as “us-central1”. |
nothing calls this directly
no test coverage detected