12 lines
274 B
TypeScript
12 lines
274 B
TypeScript
export interface ModalYesNoVariables {
|
|
readonly title: string;
|
|
readonly question: string;
|
|
readonly textYes: string | undefined;
|
|
readonly textNo: string | undefined;
|
|
}
|
|
export interface ModalYesNoEvents {
|
|
action_submit: {
|
|
status: boolean;
|
|
};
|
|
}
|