import ContentType from './ContentType'; /** * The playback source. * * @group Interfaces */ export default interface Source { /** The URL to the stream manifest. */ url: string; /** The stream type. */ type: ContentType; /** Set to true for DRM protected stream. */ drmProtected?: boolean; /** Set to true for live stream. */ live?: boolean; }