mirror of
https://github.com/oxen-io/session-desktop.git
synced 2023-12-14 02:12:57 +01:00
14 lines
311 B
TypeScript
14 lines
311 B
TypeScript
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;
|
|
}
|