Created OverlayPanel.d.ts

pull/12/head
mertsincan 2019-05-29 12:36:07 +03:00
parent cd2f396618
commit 6d8f9aa0f1
1 changed files with 12 additions and 0 deletions

View File

@ -0,0 +1,12 @@
import Vue, { VNode } from 'vue';
export declare class OverlayPanel extends Vue {
ismissable?: boolean;
showCloseIcon?: boolean;
appendTo?: string;
baseZIndex?: number;
autoZIndex?: boolean;
$slots: {
'': VNode[];
}
}