summaryrefslogtreecommitdiff
path: root/lib/types
diff options
context:
space:
mode:
authorElizabeth Hunt <me@liz.coffee>2025-07-27 18:43:54 -0700
committerElizabeth Hunt <me@liz.coffee>2025-07-27 19:29:20 -0700
commit4f0d63dba58fc2e65e9a378a6541f3176cf00440 (patch)
tree1a736df681922de0624fb65b4104a05f8a704a16 /lib/types
parent9970036d203ba2d0a46b35ba6fad21d49441cdd4 (diff)
downloadpengueno-4f0d63dba58fc2e65e9a378a6541f3176cf00440.tar.gz
pengueno-4f0d63dba58fc2e65e9a378a6541f3176cf00440.zip
bump and include
Diffstat (limited to 'lib/types')
-rw-r--r--lib/types/index.ts4
-rw-r--r--lib/types/tagged.ts2
2 files changed, 3 insertions, 3 deletions
diff --git a/lib/types/index.ts b/lib/types/index.ts
index 5c4e4d2..e6f27df 100644
--- a/lib/types/index.ts
+++ b/lib/types/index.ts
@@ -1,5 +1,5 @@
export * from './misc';
export * from './object';
export * from './tagged';
-export * from './fn';
-export * from './collections';
+export * from './fn/index';
+export * from './collections/index';
diff --git a/lib/types/tagged.ts b/lib/types/tagged.ts
index 31607b0..fbd6c93 100644
--- a/lib/types/tagged.ts
+++ b/lib/types/tagged.ts
@@ -1,4 +1,4 @@
-import { isObject } from '.';
+import { isObject } from './index';
export interface Tagged<TTag> {
_tag: TTag;