| 6 | import { WorkerOptions, QueueOptions, Job, ConnectionOptions } from 'bullmq'; |
| 7 | |
| 8 | export interface IProcessor { |
| 9 | execute(data: any, job: Job, token?: string): Promise<any>; |
| 10 | } |
| 11 | |
| 12 | export interface Application extends IMidwayApplication<Context> {} |
| 13 | export type NextFunction = BaseNextFunction; |
nothing calls this directly
no outgoing calls
no test coverage detected