mirror of
https://github.com/versia-pub/frontend.git
synced 2025-12-06 08:28:20 +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;
|
||
|
|
}
|