@vonage/video
Version:
Package to interact with the Vonage Video API (Not OpenTok Compatible)
16 lines (14 loc) • 350 B
TypeScript
/**
* Represents the response for a WebSocket connection.
*/
type WebSocketConnectResponse = {
/**
* The unique identifier of the WebSocket connection.
*/
id: string;
/**
* The connection identifier associated with the WebSocket connection.
*/
connectionId: string;
};
export type { WebSocketConnectResponse };