@doczilla/node
Version:
Doczilla API wrapper
22 lines (21 loc) • 381 B
TypeScript
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"
}
}