mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
21 lines
484 B
TypeScript
21 lines
484 B
TypeScript
export type DialogOptions = {
|
|
title?: string;
|
|
message?: string;
|
|
overlay?: boolean;
|
|
lockOnScroll?: boolean;
|
|
confirmButtonText?: string;
|
|
cancelButtonText?: string;
|
|
showConfirmButton?: boolean;
|
|
showCancelButton?: boolean;
|
|
closeOnClickOverlay?: boolean;
|
|
}
|
|
|
|
export interface Dialog {
|
|
(options: DialogOptions): Promise<any>;
|
|
alert(options: DialogOptions): Promise<any>;
|
|
confirm(options: DialogOptions): Promise<any>;
|
|
close(): void;
|
|
}
|
|
|
|
export const Dialog: Dialog;
|