0.2.2 #31

Merged
Thilawyn merged 184 commits from next into master 2026-01-16 17:05:31 +01:00
Showing only changes of commit 485278558f - Show all commits

View File

@@ -7,6 +7,10 @@ export type ResultTypeId = typeof ResultTypeId
export type Result<A, E = never, P = never> = ( export type Result<A, E = never, P = never> = (
| Initial | Initial
| Running<P> | Running<P>
| Final<A, E, P>
)
export type Final<A, E = never, P = never> = (
| Success<A> | Success<A>
| (Success<A> & Refreshing<P>) | (Success<A> & Refreshing<P>)
| Failure<A, E> | Failure<A, E>