Represents modal dialog state for the specific activation request
export interface IModalDialogActivationRequest { readonly id: string; readonly isValid: boolean; cancel(): void;} Copy
export interface IModalDialogActivationRequest { readonly id: string; readonly isValid: boolean; cancel(): void;}
Readonly
Unique identifier for the request
Determines if the request is still active
Cancels the request if it's still active
Represents modal dialog state for the specific activation request
Source