/** * The maximum resolution for a video track. * @category Media Stream */ export type Resolution = { /** * The width of the resolution. */ width: number; /** * The height of the resolution. */ height: number; };