@signalwire/compatibility-api
Version:
SignalWire Compatibility API
32 lines (26 loc) • 839 B
TypeScript
/**
* This code was generated by
* \ / _ _ _| _ _
* | (_)\/(_)(_|\/| |(/_ v1.0.0
* / /
*/
import Preview = require('../Preview');
import Version = require('../../base/Version');
import { CommandList } from './wireless/command';
import { CommandListInstance } from './wireless/command';
import { RatePlanList } from './wireless/ratePlan';
import { RatePlanListInstance } from './wireless/ratePlan';
import { SimList } from './wireless/sim';
import { SimListInstance } from './wireless/sim';
declare class Wireless extends Version {
/**
* Initialize the Wireless version of Preview
*
* @param domain - The twilio domain
*/
constructor(domain: Preview);
readonly commands: CommandListInstance;
readonly ratePlans: RatePlanListInstance;
readonly sims: SimListInstance;
}
export = Wireless;