diff --git a/src/components/chart/Chart.d.ts b/src/components/chart/Chart.d.ts new file mode 100644 index 000000000..59926472b --- /dev/null +++ b/src/components/chart/Chart.d.ts @@ -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; +} \ No newline at end of file