Skip to content

Commit d394fdb

Browse files
ZUGAZAnton Sutarmin
authored andcommitted
Merge pull request #56 from OliverJAsh/patch-2
Correct `RemoteDataT3` constraint for `M` (`URIS4` -> `URIS3`)
2 parents 5c26c11 + f81f3b8 commit d394fdb

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)