UNPKG

338 BTypeScriptView Raw
1import TelemetryEvent from "./TelemetryEvent";
2export declare const EVENT_KEYS: {
3 USER_CANCELLED: string;
4 ACCESS_DENIED: string;
5};
6export default class UiEvent extends TelemetryEvent {
7 constructor(correlationId: string);
8 set userCancelled(userCancelled: boolean);
9 set accessDenied(accessDenied: boolean);
10}