mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
31 lines
719 B
TypeScript
31 lines
719 B
TypeScript
export type DialogOptions = {
|
|
title?: string;
|
|
message?: string;
|
|
overlay?: boolean;
|
|
lockScroll?: boolean;
|
|
beforeClose?: (action: string, done: Function) => void;
|
|
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;
|
|
install(): void;
|
|
setDefaultOptions(options: DialogOptions): void;
|
|
resetDefaultOptions(): void;
|
|
}
|
|
|
|
declare module 'vue/types/vue' {
|
|
interface Vue {
|
|
$dialog: Dialog
|
|
}
|
|
}
|
|
|
|
export const Dialog: Dialog;
|