We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e150dc1 commit da0dd24Copy full SHA for da0dd24
src/types.ts
@@ -1,7 +1,10 @@
1
import { CSSProperties } from 'react';
2
-import type { EChartsOption, EChartsType } from 'echarts';
+import type { EChartsType } from 'echarts';
3
4
-export type { EChartsOption };
+/**
5
+ * Solve the type conflict caused by multiple type files
6
+ */
7
+export type EChartsOption = any;
8
9
export type EChartsInstance = EChartsType;
10
0 commit comments