UNPKG

@datatr-ux/ovhcloud-types

Version:

TypeScript types for OVHCloud projects

11 lines 358 B
import { CountryEnum } from '../coreTypes/CountryEnum'; /** Information about a datacenter of a VPS Virtual Machine */ export interface Datacenter { /** Datacenter ISO country code */ country: CountryEnum; /** Datacenter display name */ longName: string; /** Datacenter name */ name: string; } //# sourceMappingURL=Datacenter.d.ts.map