UNPKG

@vonage/video

Version:

Package to interact with the Vonage Video API (Not OpenTok Compatible)

20 lines (18 loc) 394 B
/** * Interface representing an RTMP stream configuration. */ type RTMPStream = { /** * Optional unique identifier for the RTMP stream. */ id?: string; /** * The RTMP server URL to which the stream will be sent. */ serverUrl: string; /** * The name of the stream on the RTMP server. */ streamName: string; }; export type { RTMPStream };