node-ovh-ts
Version:
OVH API wrapper library for TypeScript
12 lines (9 loc) • 329 B
TypeScript
import { TelephonyTypeEnum } from './TelephonyTypeEnum.js';
import { TelephonyTypeServiceEnum } from './TelephonyTypeServiceEnum.js';
type TelephonyMiniPabx = {
description?: string;
featureType?: TelephonyTypeEnum;
serviceName?: string;
serviceType?: TelephonyTypeServiceEnum;
};
export { TelephonyMiniPabx };