(event: string, properties: TelemetryProperties = {})
| 72 | } |
| 73 | |
| 74 | track(event: string, properties: TelemetryProperties = {}): void { |
| 75 | this.trackWithContext(event, properties, {}); |
| 76 | } |
| 77 | |
| 78 | trackWithContext( |
| 79 | event: string, |
nothing calls this directly
no test coverage detected