/** @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
