UNPKG

@doczilla/node

Version:
22 lines (21 loc) 381 B
export type AsyncJob = { /** * Id of the queued job. */ id: string; /** * Status of the job. */ status: AsyncJob.status; }; export declare namespace AsyncJob { /** * Status of the job. */ enum status { PENDING = "PENDING", RUNNING = "RUNNING", FAILED = "FAILED", COMPLETED = "COMPLETED" } }