-
-
Notifications
You must be signed in to change notification settings - Fork 94
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add Data.TaggedEnum.WithGenerics example
- Loading branch information
Showing
2 changed files
with
29 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
import { Data } from "effect" | ||
|
||
type RemoteData<A, B> = Data.TaggedEnum<{ | ||
Loading: {} | ||
Success: { data: A } | ||
Failure: { error: B } | ||
}> | ||
|
||
interface RemoteDataDefinition extends Data.TaggedEnum.WithGenerics<2> { | ||
readonly taggedEnum: RemoteData<this["A"], this["B"]> | ||
} | ||
|
||
const { Loading, Failure, Success } = Data.taggedEnum<RemoteDataDefinition>() | ||
|
||
// $ExpectType Data<{ readonly _tag: "Loading"; }> | ||
const loading = Loading() | ||
|
||
// $ExpectType Data<{ readonly _tag: "Failure"; readonly error: string; }> | ||
const failure = Failure({ error: "err" }) | ||
|
||
// $ExpectType Data<{ readonly _tag: "Success"; readonly data: number; }> | ||
const success = Success({ data: 1 }) |