Skip to content

Commit 2432aed

Browse files
meizilove258JackLian
authored andcommitted
fix: delete unused typescript types
1 parent 912ee22 commit 2432aed

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

packages/utils/src/asset.ts

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
1-
import { AssetItem, AssetType, AssetLevels, Asset, AssetList, AssetBundle, AssetLevel, AssetsJson } from '@alilc/lowcode-types';
1+
import { AssetType, AssetLevels, AssetLevel } from '@alilc/lowcode-types';
2+
import type { AssetItem, Asset, AssetList, AssetBundle, AssetsJson } from '@alilc/lowcode-types';
23
import { isCSSUrl } from './is-css-url';
34
import { createDefer } from './create-defer';
45
import { load, evaluate } from './script';
56

67
// API 向下兼容
7-
export { AssetItem, AssetType, AssetLevels, Asset, AssetList, AssetBundle, AssetLevel, AssetsJson } from '@alilc/lowcode-types';
8+
export { AssetType, AssetLevels, AssetLevel } from '@alilc/lowcode-types';
89

910
export function isAssetItem(obj: any): obj is AssetItem {
1011
return obj && obj.type;

0 commit comments

Comments
 (0)