@datatr-ux/ovhcloud-types
Version:
TypeScript types for OVHCloud projects
17 lines • 411 B
TypeScript
import { TemplateBitFormatEnum } from './TemplateBitFormatEnum';
/** Installation template for a VPS Virtual Machine */
export interface Template {
/** */
availableLanguage: string[];
/** */
bitFormat: TemplateBitFormatEnum;
/** */
distribution: string;
/** */
id: number;
/** */
locale: string;
/** */
name: string;
}
//# sourceMappingURL=Template.d.ts.map