From b647fd5c8b8577a25680b70a133125f804d9c2ea Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=90=D0=BB=D0=B0=D0=B5=D0=B2=20=D0=95=D0=B2=D0=B3=D0=B5?= =?UTF-8?q?=D0=BD=D0=B8=D0=B9?= Date: Wed, 13 Jul 2022 20:14:56 +0300 Subject: [PATCH] feat: add root types export --- src/index.ts | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/src/index.ts b/src/index.ts index 1d6a3ad6..96e39090 100644 --- a/src/index.ts +++ b/src/index.ts @@ -1,3 +1,14 @@ import {ChartKit} from './components/ChartKit'; +export type { + ChartKitLang, + ChartKitOnLoadData, + ChartKitPlugin, + ChartKitProps, + ChartKitRef, + ChartKitWidgetRef, + ChartkitType, + ChartkitWidget, +} from './types'; + export default ChartKit;