We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
pipe
flow
1 parent b00f7a0 commit 5266b6cCopy full SHA for 5266b6c
.changeset/rare-beds-smash.md
@@ -0,0 +1,5 @@
1
+---
2
+"effect": patch
3
4
+
5
+Improve DX of type errors from inside `pipe` and `flow`
packages/effect/dtslint/Function.ts
@@ -0,0 +1,27 @@
+import { identity, Option } from "effect"
+import { flow, pipe } from "effect/Function"
+// We should only have one error for the missing definition.
+const _x = (): number =>
6
+ pipe(
7
+ 1,
8
+ // @ts-expect-error
9
+ add(1),
10
+ identity
11
+ )
12
13
14
+const _y = (): (n: number) => number =>
15
+ flow(
16
17
18
19
20
21
22
+const _z = (): number =>
23
+ Option.some(1).pipe(
24
25
26
27
0 commit comments