node-ovh-ts
Version:
OVH API wrapper library for TypeScript
12 lines (9 loc) • 451 B
TypeScript
import { OvertheboxConfigurationTypesDnsNameserver } from './OvertheboxConfigurationTypesDnsNameserver.js';
import { OvertheboxConfigurationStatusEnum } from './OvertheboxConfigurationStatusEnum.js';
type OvertheboxConfigurationDnsNameserver = {
configuration?: OvertheboxConfigurationTypesDnsNameserver;
id?: string;
priority?: number;
status?: OvertheboxConfigurationStatusEnum;
};
export { OvertheboxConfigurationDnsNameserver };