UNPKG

@vonage/video

Version:

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

18 lines 412 B
/** * Interface representing an RTMP stream configuration. */ export 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; }; //# sourceMappingURL=RTMPStream.d.ts.map