mirror of
https://github.com/versia-pub/frontend.git
synced 2026-01-27 04:46:01 +01:00
12 lines
218 B
TypeScript
12 lines
218 B
TypeScript
|
|
export interface ConfirmModalOptions {
|
||
|
|
title?: string;
|
||
|
|
message: string;
|
||
|
|
confirmText?: string;
|
||
|
|
cancelText?: string;
|
||
|
|
}
|
||
|
|
|
||
|
|
export interface ConfirmModalResult {
|
||
|
|
confirmed: boolean;
|
||
|
|
value?: string;
|
||
|
|
}
|