@datatr-ux/ovhcloud-types
Version:
TypeScript types for OVHCloud projects
10 lines • 354 B
TypeScript
import { VpsOptionEnum } from './VpsOptionEnum';
import { VpsOptionStateEnum } from './VpsOptionStateEnum';
/** Information about the options of a VPS Virtual Machine */
export interface Option {
/** The option name */
option: VpsOptionEnum;
/** The state of the option */
state: VpsOptionStateEnum;
}
//# sourceMappingURL=Option.d.ts.map