UNPKG

@datatr-ux/ovhcloud-types

Version:

TypeScript types for OVHCloud projects

19 lines 466 B
import { TaskStatusEnum } from './TaskStatusEnum'; /** Describes the current status of a task */ export interface Task { /** Date when the action was completed */ doneDate?: string; /** */ function: string; /** */ id: number; /** */ isArchived: boolean; /** */ status: TaskStatusEnum; /** Date when the action will start */ todoDate: string; /** */ updateDate: string; } //# sourceMappingURL=Task.d.ts.map