1declare namespace IMusic { 2 /** 歌单项 */ 3 export interface IMusicSheetItem { 4 /** 封面图 */ 5 coverImg?: string; 6 /** 标题 */ 7 title: string; 8 /** 歌曲列表 */ 9 musicList: Array<IMusic.IMusicItem>; 10 /** 歌单id */ 11 id: string; 12 13 } 14 15 export type IMusicSheet = Array<IMusicSheetItem>; 16}