aboutsummaryrefslogtreecommitdiff
path: root/stdlib/effect.ts
diff options
context:
space:
mode:
Diffstat (limited to 'stdlib/effect.ts')
-rw-r--r--stdlib/effect.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/stdlib/effect.ts b/stdlib/effect.ts
index 0662d00..341a620 100644
--- a/stdlib/effect.ts
+++ b/stdlib/effect.ts
@@ -7,7 +7,7 @@ export interface Kind1<Inp = unknown, Out = unknown> {
return: Out
}
-type Func<Inp = unknown, Out = unknown>
+export type Func<Inp = unknown, Out = unknown>
= Kind1<Inp, Out>
| (<_T extends Inp>() => Out)