Created Dialog.d.ts

pull/12/head
mertsincan 2019-05-28 15:12:03 +03:00
parent a56ed564c0
commit 58bae69fbc
1 changed files with 21 additions and 0 deletions

21
src/components/dialog/Dialog.d.ts vendored Normal file
View File

@ -0,0 +1,21 @@
import Vue, {VNode} from 'vue';
export declare class Dialog extends Vue {
header?: any;
footer?: any;
visible?: boolean;
modal?: boolean;
contentStyle?: string;
rtl?: boolean;
closable?: boolean;
showHeader?: boolean;
baseZIndex?: number;
autoZIndex?: boolean;
$emit(eventName: 'show'): this;
$emit(eventName: 'hide'): this;
$slots: {
'': VNode[];
header: VNode[];
footer: VNode[];
}
}