msal
Version:
Microsoft Authentication Library for js
11 lines (10 loc) • 338 B
TypeScript
import TelemetryEvent from "./TelemetryEvent";
export declare const EVENT_KEYS: {
USER_CANCELLED: string;
ACCESS_DENIED: string;
};
export default class UiEvent extends TelemetryEvent {
constructor(correlationId: string);
set userCancelled(userCancelled: boolean);
set accessDenied(accessDenied: boolean);
}