Files
rss-aggregator/node_modules/bullmq/dist/esm/interfaces/parent-message.d.ts
T

9 lines
204 B
TypeScript

import { ChildCommand } from '../enums/child-command';
import { JobJson } from './job-json';
export interface ParentMessage {
cmd: ChildCommand;
value?: any;
err?: Error;
job?: JobJson;
}