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
36 lines (24 loc) • 804 B
text/typescript
/** @internal */
export type OP_AND = typeof OP_AND
/** @internal */
export const OP_AND = "And" as const
/** @internal */
export type OP_OR = typeof OP_OR
/** @internal */
export const OP_OR = "Or" as const
/** @internal */
export type OP_INVALID_DATA = typeof OP_INVALID_DATA
/** @internal */
export const OP_INVALID_DATA = "InvalidData" as const
/** @internal */
export type OP_MISSING_DATA = typeof OP_MISSING_DATA
/** @internal */
export const OP_MISSING_DATA = "MissingData" as const
/** @internal */
export type OP_SOURCE_UNAVAILABLE = typeof OP_SOURCE_UNAVAILABLE
/** @internal */
export const OP_SOURCE_UNAVAILABLE = "SourceUnavailable" as const
/** @internal */
export type OP_UNSUPPORTED = typeof OP_UNSUPPORTED
/** @internal */
export const OP_UNSUPPORTED = "Unsupported" as const