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
18 lines (12 loc) • 476 B
text/typescript
/** @internal */
export const OP_BACKPRESSURE_STRATEGY = "BackPressure" as const
/** @internal */
export type OP_BACKPRESSURE_STRATEGY = typeof OP_BACKPRESSURE_STRATEGY
/** @internal */
export const OP_DROPPING_STRATEGY = "Dropping" as const
/** @internal */
export type OP_DROPPING_STRATEGY = typeof OP_DROPPING_STRATEGY
/** @internal */
export const OP_SLIDING_STRATEGY = "Sliding" as const
/** @internal */
export type OP_SLIDING_STRATEGY = typeof OP_SLIDING_STRATEGY