Skip to content

Commit

Permalink
Update future.ts to export FutureState
Browse files Browse the repository at this point in the history
  • Loading branch information
roobscoob authored Mar 12, 2024
1 parent afd6929 commit e4e84b8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/future.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { Matcher } from "./match";
import { Maybe } from "./maybe";
import { Result } from "./result";

enum FutureState {
export enum FutureState {
Pending,
Resolved,
Rejected
Expand Down Expand Up @@ -255,4 +255,4 @@ export class Future<T, E> {
});
});
}
}
}

0 comments on commit e4e84b8

Please sign in to comment.