UNPKG

@vonage/voice

Version:

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

16 lines (14 loc) 353 B
/** * Enum representing HTTP methods used for making web requests. */ declare enum HttpMethod { /** * The HTTP GET method, used for retrieving data from a server. */ GET = "GET", /** * The HTTP POST method, used for sending data to a server to create or update resources. */ POST = "POST" } export { HttpMethod };