xref: /MusicFree/src/types/artist.d.ts (revision 4060c00a75883036bbd315fb25c90065209312b3)
17688af02S猫头猫declare namespace IArtist {
28b88e961S猫头猫    export interface IArtistItemBase extends ICommon.IMediaBase {
37688af02S猫头猫        name: string;
47688af02S猫头猫        id: string;
57688af02S猫头猫        fans?: number;
67688af02S猫头猫        description?: string;
78b88e961S猫头猫        platform: string;
87688af02S猫头猫        avatar: string;
97688af02S猫头猫        worksNum: number;
100b940038S猫头猫    }
110b940038S猫头猫    export interface IArtistItem extends IArtistItemBase {
12*4060c00aS猫头猫        musicList: IMusic.IMusicItemBase;
13*4060c00aS猫头猫        albumList: IAlbum.IAlbumItemBase;
147688af02S猫头猫        [k: string]: any;
157688af02S猫头猫    }
1620e2869eS猫头猫
1720e2869eS猫头猫    export type ArtistMediaType = IArtist.ArtistMediaType;
187688af02S猫头猫}
19