UNPKG

cnpmcore

Version:

Private NPM Registry for Enterprise

19 lines (18 loc) 460 B
import type { TaskState, TaskType } from '../../common/enum/Task.ts'; import { Bone } from '../util/leoric.ts'; export declare class HistoryTask extends Bone { id: bigint; createdAt: Date; updatedAt: Date; taskId: string; type: TaskType; state: TaskState; targetName: string; authorId: string; authorIp: string; data: object; logPath: string; logStorePosition: string; attempts: number; error: string; }