UNPKG

redis-smq-common

Version:

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

7 lines 306 B
import { ICallback } from './callback.js'; export type TFunction<TArgs extends any[] = any[], TReturn = any> = (...args: TArgs) => TReturn; export type TAsyncFunction<TArgs extends any[] = [], TResult = any> = [ ...args: TArgs, callback: ICallback<TResult> ]; //# sourceMappingURL=function.d.ts.map