Skip to content

Commit

Permalink
fix(custom): import type
Browse files Browse the repository at this point in the history
  • Loading branch information
Ovilia committed Aug 13, 2024
1 parent dafe129 commit 78c072c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/chart/custom/customSeriesRegister.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { CustomSeriesRenderItem } from './CustomSeries';
import type { CustomSeriesRenderItem } from './CustomSeries';

const customRenderers: {[type: string]: CustomSeriesRenderItem} = {};

Expand Down
2 changes: 1 addition & 1 deletion src/core/echarts.ts
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ import ComponentModel from '../model/Component';
import SeriesModel from '../model/Series';
import ComponentView, {ComponentViewConstructor} from '../view/Component';
import ChartView, {ChartViewConstructor} from '../view/Chart';
import {CustomSeriesRenderItem} from '../chart/custom/CustomSeries';
import type {CustomSeriesRenderItem} from '../chart/custom/CustomSeries';
import * as graphic from '../util/graphic';
import {getECData} from '../util/innerStore';
import {
Expand Down

0 comments on commit 78c072c

Please sign in to comment.