veffect
Version:
powerful TypeScript validation library built on the robust foundation of Effect combining exceptional type safety, high performance, and developer experience. Taking inspiration from Effect's functional principles, VEffect delivers a balanced approach tha
24 lines (16 loc) • 459 B
text/typescript
/** @internal */
export const OP_LEFT = "Left" as const
/** @internal */
export type OP_LEFT = typeof OP_LEFT
/** @internal */
export const OP_RIGHT = "Right" as const
/** @internal */
export type OP_RIGHT = typeof OP_RIGHT
/** @internal */
export const OP_BOTH = "Both" as const
/** @internal */
export type OP_BOTH = typeof OP_BOTH
/** @internal */
export const OP_EITHER = "Either" as const
/** @internal */
export type OP_EITHER = typeof OP_EITHER