UNPKG

@datatr-ux/ovhcloud-types

Version:

TypeScript types for OVHCloud projects

13 lines 369 B
import { TaskStatusEnum } from './TaskStatusEnum'; /** Task Struct */ export interface Task { /** Finished date of the task */ finishDate?: string; /** Function of the task */ function: string; /** Status of an Email Pro task. */ status: TaskStatusEnum; /** Todo date of the task */ todoDate: string; } //# sourceMappingURL=Task.d.ts.map