UNPKG

@datatr-ux/ovhcloud-types

Version:

TypeScript types for OVHCloud projects

11 lines 285 B
import { TaskStatusEnum } from './TaskStatusEnum'; /** Task */ export interface Task { /** The name of the task */ name: string; /** The status of the task */ status: TaskStatusEnum; /** The id of the task */ taskId: string; } //# sourceMappingURL=Task.d.ts.map