Skip to content

Commit

Permalink
chore: 修复路径引入问题
Browse files Browse the repository at this point in the history
  • Loading branch information
lvisei committed Aug 8, 2022
1 parent 1ecab5c commit c502043
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/components/Layers/BaseLayers/PointLayer/types.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import type { PointLayer, PointLayerOptions } from '@antv/l7-composite-layers';
import type { LayerCommonProps } from '../../../types/common';
import type { LayerCommonProps } from '../../../../types/common';

/**
* 组件类型定义
Expand Down
2 changes: 1 addition & 1 deletion src/components/Layers/BaseLayers/PolygonLayer/types.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import type { PolygonLayer, PolygonLayerOptions } from '@antv/l7-composite-layers';
import type { LayerCommonProps } from '../../../types/common';
import type { LayerCommonProps } from '../../../../types/common';

/**
* 组件类型定义
Expand Down
2 changes: 1 addition & 1 deletion src/components/Layers/BaseLayers/TextLayer/types.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import type { TextLayer, TextLayerOptions } from '@antv/l7-composite-layers';
import type { LayerCommonProps } from '../../../types/common';
import type { LayerCommonProps } from '../../../../types/common';

/**
* 组件类型定义
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import type {
ChoroplethLayerOptions,
ChoroplethLayerSourceOptions,
} from '@antv/l7-composite-layers';
import type { LayerCommonProps } from '../../../types/common';
import type { LayerCommonProps } from '../../../../types/common';

export type { ChoroplethLayerActiveOptions, ChoroplethLayerSourceOptions };

Expand Down

0 comments on commit c502043

Please sign in to comment.