From 40cd04413fc11434ab9a154292e72f4df2897c70 Mon Sep 17 00:00:00 2001 From: max-sistemich-kisters <122873590+max-sistemich-kisters@users.noreply.github.com> Date: Fri, 10 Jan 2025 08:45:36 +0100 Subject: [PATCH] fix: add chart object to type declarations --- types/highcharts-vue.d.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/types/highcharts-vue.d.ts b/types/highcharts-vue.d.ts index 7582afc..1841309 100644 --- a/types/highcharts-vue.d.ts +++ b/types/highcharts-vue.d.ts @@ -13,17 +13,17 @@ export interface ChartProps { declare module '@vue/runtime-core' { export interface GlobalComponents { - HighchartsVue: DefineComponent + HighchartsVue: DefineComponent } } export type ChartUpdateArgs = [boolean, boolean, Highcharts.AnimationOptionsObject]; -export const Chart: DefineComponent; +export const Chart: DefineComponent; export interface HCVueInstallOptions { tagName?: string; highcharts?: typeof Highcharts; } -export default function install(app: App, options?: HCVueInstallOptions): void; \ No newline at end of file +export default function install(app: App, options?: HCVueInstallOptions): void;