(event: string, properties: TelemetryProperties = {})
| 219 | } |
| 220 | |
| 221 | export function track(event: string, properties: TelemetryProperties = {}): void { |
| 222 | defaultClient.track(event, properties); |
| 223 | } |
| 224 | |
| 225 | export function withContext(input: TelemetryContextIds): TelemetryClient { |
| 226 | return defaultClient.withContext(input); |