From 4a827db5ffdbbd5df4da982f4fb96248e1a0b800 Mon Sep 17 00:00:00 2001 From: Samuel Gratzl Date: Wed, 2 Sep 2020 14:10:19 +0200 Subject: [PATCH] Fix Invalid Typescript Types (#7748) --- types/core/index.d.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/types/core/index.d.ts b/types/core/index.d.ts index 820d34e46..4b106e671 100644 --- a/types/core/index.d.ts +++ b/types/core/index.d.ts @@ -346,7 +346,7 @@ export class DatasetController { destroy?(chart: Chart, options: O): void; } -declare type IChartComponentLike = IChartComponent | IChartComponent[] | { [key: string]: IChartComponent }; +export declare type IChartComponentLike = IChartComponent | IChartComponent[] | { [key: string]: IChartComponent }; /** * Please use the module's default export which provides a singleton instance -- 2.47.2