1declare namespace IMusic { 2 /** 歌单项 */ 3 export interface IMusicSheetGroupItem { 4 title?: string; 5 data: Array<IMusicSheetItemBase>; 6 } 7} 8