Skip to content

Commit

Permalink
feat: expose Option and Either types directly on main entrypoint
Browse files Browse the repository at this point in the history
  • Loading branch information
lukemorales committed Sep 13, 2023
1 parent d0dd326 commit 01c38b5
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .changeset/bright-laws-fail.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'funkcia': patch
---

Expose constructor types in main entrypoint
3 changes: 3 additions & 0 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,3 +20,6 @@ export {
P as predicate,
S as string,
};

export type { Either, Left, Right } from './either';
export type { None, Option, Some } from './option';

0 comments on commit 01c38b5

Please sign in to comment.