/** @group Interfaces */ export interface Property { key: string; value: string; } /** @group Interfaces */ export interface Role { schemeId: string; value: string; } /** @group Interfaces */ export default interface Rendition { id: string; active: boolean; bitrate: number; codec: string; properties?: Property[]; roles?: Role[]; protected?: boolean; supported?: boolean; filtered?: boolean; blocked?: boolean; drmLicenseExpected?: boolean; drmLicenseAvailable?: boolean; selectable?: boolean; }