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
84 lines (56 loc) • 1.85 kB
text/typescript
/** @internal */
export type OP_ASYNC = typeof OP_ASYNC
/** @internal */
export const OP_ASYNC = "Async" as const
/** @internal */
export type OP_COMMIT = typeof OP_COMMIT
/** @internal */
export const OP_COMMIT = "Commit" as const
/** @internal */
export type OP_FAILURE = typeof OP_FAILURE
/** @internal */
export const OP_FAILURE = "Failure" as const
/** @internal */
export type OP_ON_FAILURE = typeof OP_ON_FAILURE
/** @internal */
export const OP_ON_FAILURE = "OnFailure" as const
/** @internal */
export type OP_ON_SUCCESS = typeof OP_ON_SUCCESS
/** @internal */
export const OP_ON_SUCCESS = "OnSuccess" as const
/** @internal */
export type OP_ON_SUCCESS_AND_FAILURE = typeof OP_ON_SUCCESS_AND_FAILURE
/** @internal */
export const OP_ON_SUCCESS_AND_FAILURE = "OnSuccessAndFailure" as const
/** @internal */
export type OP_SUCCESS = typeof OP_SUCCESS
/** @internal */
export const OP_SUCCESS = "Success" as const
/** @internal */
export type OP_SYNC = typeof OP_SYNC
/** @internal */
export const OP_SYNC = "Sync" as const
/** @internal */
export const OP_TAG = "Tag" as const
/** @internal */
export type OP_TAG = typeof OP_TAG
/** @internal */
export type OP_UPDATE_RUNTIME_FLAGS = typeof OP_UPDATE_RUNTIME_FLAGS
/** @internal */
export const OP_UPDATE_RUNTIME_FLAGS = "UpdateRuntimeFlags" as const
/** @internal */
export type OP_WHILE = typeof OP_WHILE
/** @internal */
export const OP_WHILE = "While" as const
/** @internal */
export type OP_WITH_RUNTIME = typeof OP_WITH_RUNTIME
/** @internal */
export const OP_WITH_RUNTIME = "WithRuntime" as const
/** @internal */
export type OP_YIELD = typeof OP_YIELD
/** @internal */
export const OP_YIELD = "Yield" as const
/** @internal */
export type OP_REVERT_FLAGS = typeof OP_REVERT_FLAGS
/** @internal */
export const OP_REVERT_FLAGS = "RevertFlags" as const