import type { Job } from './Job'; import type { TimeSpan } from './TimeSpan'; export type ComfyJob = (Job & { /** * A untyped set of parameters that are associated with this job */ params?: Record | null; readonly type?: string | null; claimDuration?: TimeSpan; });