diff --git a/packages/types/src/utils.ts b/packages/types/src/utils.ts index fbccf0844..b8ac406ef 100644 --- a/packages/types/src/utils.ts +++ b/packages/types/src/utils.ts @@ -14,14 +14,4 @@ export type ExternalUtils = { }; export type UtilItem = InternalUtils | ExternalUtils; -export type UtilsMap = Array< -| { - name: string; - type: 'npm'; - content: NpmInfo; -} -| { - name: string; - type: ''; -} ->; +export type UtilsMap = UtilItem[];