This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
// 定义清晰度选项的类型
export interface Resolution {
id: number;
height: number;
width: number;
bitrate: number;
label: string;
url?: string; // 可选:清晰度对应的视频URL
active?: boolean; // 可选:是否是当前激活的清晰度
}