UNPKG

@datatr-ux/ovhcloud-types

Version:

TypeScript types for OVHCloud projects

20 lines 566 B
import { ActionType } from './ActionType'; import { TaskStateEnum } from './TaskStateEnum'; /** licenses Todos */ export interface Task { /** This Task description */ action: ActionType; /** When was this Task done */ doneDate?: string; /** The last time this Task was updated */ lastUpdate: string; /** This Task name */ name: string; /** Current Taks status */ status: TaskStateEnum; /** This Task id */ taskId: number; /** When was this Task created */ todoDate: string; } //# sourceMappingURL=Task.d.ts.map