/** * Enum representing different stream protocols. * These protocols are not always supported by all devices. */ declare enum StreamProtocol { HLS = 0, RTP = 1, HTTP = 2, UDP = 3, RTMP = 4, RTSP = 5 } export default StreamProtocol;