From 72b1e7e046d780694b05e9a48c120078c575c21c Mon Sep 17 00:00:00 2001 From: taehuikim Date: Tue, 29 Aug 2023 11:23:22 +0900 Subject: [PATCH] fix: Only named exports may use 'export type' --- src/type-util/index.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/type-util/index.ts b/src/type-util/index.ts index ae640b8..c4f9116 100644 --- a/src/type-util/index.ts +++ b/src/type-util/index.ts @@ -1,2 +1,2 @@ -export * from './type-util'; -export type * from './type-util.type'; +export { TypeUtil } from './type-util'; +export type { NarrowableType, PickWithPartial, RequiredPartialProps, Nullable, Arrayable } from './type-util.type';