/** @group Enums */ declare enum ContentType { /** HTTP Live Streaming **/ Hls = "hls", /** MPEG-DASH */ Dash = "dash", /** Smooth Streaming */ Smooth = "smooth", /** MP4 */ Mp4 = "mp4" } export default ContentType;