浏览代码

Use export type instead of export {} to fix isolatedModules

Janic Duplessis 5 年前
父节点
当前提交
cb41a986a3
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1
    1
      src/index.tsx

+ 1
- 1
src/index.tsx 查看文件

@@ -42,4 +42,4 @@ export function useSafeArea(): EdgeInsets {
42 42
   return safeArea;
43 43
 }
44 44
 
45
-export { EdgeInsets };
45
+export type EdgeInsets = EdgeInsets;