Created Toolbar.d.ts

pull/12/head
mertsincan 2019-05-29 14:19:50 +03:00
parent 79db8ce211
commit c893496589
1 changed files with 8 additions and 0 deletions

8
src/components/toolbar/Toolbar.d.ts vendored Normal file
View File

@ -0,0 +1,8 @@
import Vue, { VNode } from 'vue';
export declare class Toolbar extends Vue {
$slots: {
left: VNode[];
right: VNode[];
}
}