add types for window.confirmationDialog
parent
94bd47fb8c
commit
f420559f3f
@ -0,0 +1,14 @@
|
||||
export interface ConfirmationDialogParams {
|
||||
title?: string;
|
||||
message: string;
|
||||
messageSub?: string;
|
||||
resolve?: any;
|
||||
reject?: any;
|
||||
okText?: string;
|
||||
okTheme?: string;
|
||||
closeTheme?: string;
|
||||
cancelText?: string;
|
||||
hideCancel?: boolean;
|
||||
sessionIcon?: SessionIconType;
|
||||
iconSize?: SessionIconSize;
|
||||
}
|
Loading…
Reference in New Issue