Created Accordion.d.ts

pull/12/head
mertsincan 2019-05-28 12:49:55 +03:00
parent 2417b170ef
commit bc79e0c275
1 changed files with 10 additions and 0 deletions

10
src/components/accordion/Accordion.d.ts vendored Normal file
View File

@ -0,0 +1,10 @@
import Vue, { VNode } from 'vue';
export declare class Accordion extends Vue {
multiple?: boolean;
$emit(eventName: "tab-open", e: {originalEvent: Event, tab: any}): this;
$emit(eventName: "tab-close", e: {originalEvent: Event, tab: any}): this;
$slots: {
'': VNode[];
}
}