Skip to content

Commit f81f3b8

Browse files
OliverJAshAnton Sutarmin
authored andcommitted
fix: Correct RemoteDataT3 constrant for M (URIS4 -> URIS3)
1 parent 5c26c11 commit f81f3b8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/remote-data-t.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ export interface RemoteDataM2<M extends URIS2> extends ApplicativeComposition22<
115115

116116
export type RemoteDataT3<M extends URIS3, S, R, E, A> = Kind3<M, S, R, RemoteData<E, A>>;
117117

118-
export interface RemoteDataM3<M extends URIS4> {
118+
export interface RemoteDataM3<M extends URIS3> {
119119
readonly map: <S, R, E, A, B>(fa: RemoteDataT3<M, S, R, E, A>, f: (a: A) => B) => RemoteDataT3<M, S, R, E, B>;
120120
readonly of: <S, R, E, A>(a: A) => RemoteDataT3<M, S, R, E, A>;
121121
readonly ap: <S, R, E, A, B>(

0 commit comments

Comments
 (0)