@vonage/voice
Version:
The Voice API lets you create outbound calls, control in-progress calls and get information about historical calls.
12 lines • 398 B
TypeScript
import { NCCOAction } from './NCCO';
import { CommonOutboundCall } from './CommonOutboundCall';
/**
* Represents an outbound call with associated Nexmo Call Control Objects (NCCO) actions.
*/
export type CallWithNCCO = CommonOutboundCall & {
/**
* An array of NCCO actions to be executed during the call.
*/
ncco: Array<NCCOAction>;
};
//# sourceMappingURL=CallWithNCCO.d.ts.map