UNPKG

@datatr-ux/ovhcloud-types

Version:

TypeScript types for OVHCloud projects

13 lines 369 B
import { EngineNameEnum } from './EngineNameEnum'; /** Input engine */ export interface Engine { /** Input engine ID */ engineId: string; /** Indicates if engine will soon not be supported */ isDeprecated: boolean; /** Software name */ name: EngineNameEnum; /** Software version */ version: string; } //# sourceMappingURL=Engine.d.ts.map