node-ovh-ts
Version:
OVH API wrapper library for TypeScript
15 lines (12 loc) • 376 B
TypeScript
import { OverTheBoxDeviceInterface } from './OverTheBoxDeviceInterface.js';
import './OverTheBoxMultipathStatusEnum.js';
type OverTheBoxDevice = {
activated?: boolean;
deviceId?: string;
lastSeen?: Date;
networkInterfaces?: OverTheBoxDeviceInterface[];
publicIp?: string;
systemVersion?: string;
version?: string;
};
export { OverTheBoxDevice };