This commit is contained in:
Audric Ackermann 2020-08-28 11:43:29 +10:00
parent 3173f01abf
commit 3e55545d1c
No known key found for this signature in database
GPG Key ID: 999F434D76324AD4
1 changed files with 13 additions and 13 deletions

26
background.d.ts vendored
View File

@ -1,14 +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;
}
title?: string;
message: string;
messageSub?: string;
resolve?: any;
reject?: any;
okText?: string;
okTheme?: string;
closeTheme?: string;
cancelText?: string;
hideCancel?: boolean;
sessionIcon?: SessionIconType;
iconSize?: SessionIconSize;
}