Type alias JobRecord<T>

JobRecord<T>: {
    createdAt: string;
    error: JobError | null;
    id: string;
    progress: number;
    result: T | null;
    state: JobState;
    updatedAt: string;
}

Type Parameters

  • T

Type declaration

  • createdAt: string
  • error: JobError | null
  • id: string
  • progress: number
  • result: T | null
  • state: JobState
  • updatedAt: string