UNPKG

node-ovh-ts

Version:

OVH API wrapper library for TypeScript

16 lines (13 loc) 444 B
import { CoreTypesIpVersionEnum } from './CoreTypesIpVersionEnum.js'; import { VpsIpGeolocationEnum } from './VpsIpGeolocationEnum.js'; import { VpsIpTypeEnum } from './VpsIpTypeEnum.js'; type VpsIp = { gateway?: string | null; geolocation?: VpsIpGeolocationEnum; ipAddress?: string; macAddress?: string | null; reverse?: string | null; type?: VpsIpTypeEnum; version?: CoreTypesIpVersionEnum; }; export { VpsIp };