UNPKG

@vonage/voice

Version:

The Voice API lets you create outbound calls, control in-progress calls and get information about historical calls.

15 lines 550 B
import { StreamAudioParameters } from '../Parameters/StreamAudioParameters'; /** * Represents the parameters for streaming audio during a call. * * @remarks * Vonage API's will return information using `snake_case`. This represents the * pure response before the client will transform the keys into `camelCase`. */ export type StreamAudioRequest = { /** * An array of stream URLs for the audio source. */ stream_url: Array<string>; } & Omit<StreamAudioParameters, 'streamUrl'>; //# sourceMappingURL=StreamAudioRequest.d.ts.map