TeaWeb/shared/js/ui/modal/yes-no/Definitions.ts

11 lines
No EOL
261 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 }
}