Created Chart.d.ts

pull/12/head
mertsincan 2019-05-28 13:37:51 +03:00
parent 00031c2dc1
commit 3109a59136
1 changed files with 10 additions and 0 deletions

10
src/components/chart/Chart.d.ts vendored Normal file
View File

@ -0,0 +1,10 @@
import Vue from 'vue';
export declare class Chart extends Vue {
type?: string;
data?: object;
options?: object;
width?: number;
height?: number;
$emit(eventName: 'select', e: {originalEvent: Event, element: any, dataset: any}): this;
}