UNPKG

redis-smq-common

Version:

Provides essential components and utilities shared across RedisSMQ packages.

8 lines 227 B
export interface IBackoffConfig { baseDelay?: number; maxDelay?: number; maxAttempts?: number; jitter?: boolean; } export type IBackoffParsedConfig = Required<IBackoffConfig>; //# sourceMappingURL=index.d.ts.map