interface HistoryWithTask {
    createdAt: Date;
    data?: object;
    id: string;
    message: string;
    task: TaskWithNamespace;
    type: string;
}

Hierarchy

  • Omit<History, "taskId">
    • HistoryWithTask

Properties

createdAt: Date
data?: object
id: string
message: string
type: string

Generated using TypeDoc