UNPKG

node-ovh-ts

Version:

OVH API wrapper library for TypeScript

21 lines (18 loc) 714 B
import { XdslXdslModemConfigChannelModeEnum } from './XdslXdslModemConfigChannelModeEnum.js'; import { XdslXdslModemConfigFrequencyEnum } from './XdslXdslModemConfigFrequencyEnum.js'; import { XdslXdslModemConfigSecurityTypeEnum } from './XdslXdslModemConfigSecurityTypeEnum.js'; type XdslWLAN = { SSID?: string; SSIDAdvertisementEnabled?: boolean; bandSteering?: boolean; channel?: number; channelMode?: XdslXdslModemConfigChannelModeEnum; enabled?: boolean; frequency?: XdslXdslModemConfigFrequencyEnum; guest?: boolean; securityKey?: string; securityType?: XdslXdslModemConfigSecurityTypeEnum; taskId?: number | null; wifiName?: string; }; export { XdslWLAN };