Skip to content

Commit

Permalink
Export Curried2
Browse files Browse the repository at this point in the history
  • Loading branch information
paldepind committed Mar 6, 2018
1 parent 791b569 commit fa8f030
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/curried.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ export {
fromIterable
} from "./index";

interface Curried2<A, B, R> {
export interface Curried2<A, B, R> {
(t1: A): (t2: B) => R;
(t1: A, t2: B): R;
}
Expand Down

0 comments on commit fa8f030

Please sign in to comment.