Skip to content
This repository has been archived by the owner on Nov 4, 2023. It is now read-only.

Commit

Permalink
fix: exports (#100)
Browse files Browse the repository at this point in the history
  • Loading branch information
tim-smart committed May 7, 2023
1 parent ad9ac08 commit dd55e51
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -353,20 +353,26 @@ export const boolean: Refinement<unknown, boolean> = P.isBoolean
* @since 1.0.0
*/
export const _undefined: Refinement<unknown, undefined> = P.isUndefined
export { _undefined as undefined }
export {
/**
* @category predicates
* @since 1.0.0
*/
_null as null,
_undefined as undefined,
}

/**
* @tsplus static effect/match/Matcher.Ops null
* @since 1.0.0
*/
export const _null: Refinement<unknown, null> = P.isNull
export {
/**
* @category predicates
* @since 1.0.0
*/
_null as null,
}

/**
* @category predicates
Expand Down

0 comments on commit dd55e51

Please sign in to comment.