UNPKG

redis-smq-common

Version:

RedisSMQ Common Library provides many components that are mainly used by RedisSMQ and RedisSMQ Monitor.

10 lines 244 B
import { TFunction } from '../../async/index.js'; export type TTimerEvent = { error: (err: Error) => void; }; export type TTimer = { timer: NodeJS.Timeout; periodic: boolean; fn: TFunction; }; //# sourceMappingURL=timer.d.ts.map