UNPKG

@vonage/voice

Version:

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

12 lines (10 loc) 249 B
/** * Represents parameters for playing DTMF (Dual-Tone Multi-Frequency) digits in a call. */ type PlayDTMFParameters = { /** * The DTMF digits to be played in the call. */ digits: string; }; export type { PlayDTMFParameters };