Skip to content

Commit

Permalink
fix module augmentation
Browse files Browse the repository at this point in the history
  • Loading branch information
gcanti committed Sep 26, 2018
1 parent 7bd3d5d commit 3bf29d2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/ConcurrentFuture.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ declare module 'fp-ts/lib/HKT' {
}

declare module 'fluture' {
interface ConcurrentFuture<L, R> {
interface ConcurrentFutureInstance<L, R> {
_A: R
_L: L
_URI: URI
Expand Down
2 changes: 1 addition & 1 deletion src/Future.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ declare module 'fp-ts/lib/HKT' {
}

declare module 'fluture' {
interface Future<L, R> {
interface FutureInstance<L, R> {
_A: R
_L: L
_URI: URI
Expand Down

0 comments on commit 3bf29d2

Please sign in to comment.