UNPKG

node-resque

Version:

an opinionated implementation of resque in node

10 lines (9 loc) 215 B
export interface Job<TResult> { plugins?: Array<any>; pluginOptions?: { [pluginName: string]: { [key: string]: any; }; }; perform: (...args: any[]) => Promise<TResult>; }