cnpmcore
Version:
19 lines (18 loc) • 441 B
TypeScript
import { Bone } from 'leoric';
import { TaskState, TaskType } from '../../common/enum/Task';
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;
}