Skip to content

Commit 5266b6c

Browse files
patrozaOliverJAsh
andauthoredOct 5, 2024
Improve DX of type errors from inside pipe and flow (#3731)
Co-authored-by: Oliver Joseph Ash <oliverjash@gmail.com>
1 parent b00f7a0 commit 5266b6c

File tree

4 files changed

+556
-52
lines changed

4 files changed

+556
-52
lines changed
 

‎.changeset/rare-beds-smash.md

+5
Original file line numberDiff line numberDiff line change
@@ -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

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
import { identity, Option } from "effect"
2+
import { flow, pipe } from "effect/Function"
3+
4+
// We should only have one error for the missing definition.
5+
const _x = (): number =>
6+
pipe(
7+
1,
8+
// @ts-expect-error
9+
add(1),
10+
identity
11+
)
12+
13+
// We should only have one error for the missing definition.
14+
const _y = (): (n: number) => number =>
15+
flow(
16+
// @ts-expect-error
17+
add(1),
18+
identity
19+
)
20+
21+
// We should only have one error for the missing definition.
22+
const _z = (): number =>
23+
Option.some(1).pipe(
24+
// @ts-expect-error
25+
add(1),
26+
identity
27+
)

0 commit comments

Comments
 (0)