Setup integrations for this client.
()
| 1248 | |
| 1249 | /** Setup integrations for this client. */ |
| 1250 | protected _setupIntegrations(): void { |
| 1251 | const { integrations } = this._options; |
| 1252 | this._integrations = setupIntegrations(this, integrations); |
| 1253 | afterSetupIntegrations(this, integrations); |
| 1254 | } |
| 1255 | |
| 1256 | /** Updates existing session based on the provided event */ |
| 1257 | protected _updateSessionFromEvent(session: Session, event: Event): void { |
nothing calls this directly
no test coverage detected