(event: string, properties: TelemetryProperties = {})
| 176 | } |
| 177 | |
| 178 | override track(event: string, properties: TelemetryProperties = {}): void { |
| 179 | this.parent.trackWithContext(event, properties, this.context); |
| 180 | } |
| 181 | |
| 182 | override getSink(): EventSink | null { |
| 183 | return this.parent.getSink(); |
nothing calls this directly
no test coverage detected