(config: Config)
| 38 | private analyticsInitialized = new Promise<void>(() => undefined); |
| 39 | |
| 40 | async updateConfig(config: Config) { |
| 41 | await this.analyticsInitialized; |
| 42 | window[GTAG_FUNCTION_NAME](GTAG_CONFIG_COMMAND, this.measurementId, { ...config, update: true }); |
| 43 | } |
| 44 | |
| 45 | constructor( |
| 46 | app: FirebaseApp, |