Refactor on AccordionTab.d.ts

pull/12/head
mertsincan 2019-05-28 13:00:24 +03:00
parent b4d8081494
commit 15ec1b28e0
1 changed files with 3 additions and 3 deletions

View File

@ -1,9 +1,9 @@
import Vue, { VNode } from 'vue';
export declare class AccordionTab extends Vue {
header: string;
active: boolean;
disabled: boolean;
header?: string;
active?: boolean;
disabled?: boolean;
$slot: {
'': VNode[];
'header': VNode[];