effect
Version:
The missing standard library for TypeScript, for writing production-grade software.
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