UNPKG

@vorsteh-queue/core

Version:

Core queue engine for Vorsteh Queue with TypeScript support, job scheduling, and event system

7 lines (6 loc) 246 B
import type { BaseJob, JobWithProgress } from "../../types"; import type { Queue } from "./queue"; /** * @internal */ export declare function createJobWrapper<TJobPayload>(job: BaseJob<TJobPayload>, queue: Queue): JobWithProgress<TJobPayload>;