Skip to content

Commit 32459e8

Browse files
committed
Remove redundant type
1 parent ca2cdbf commit 32459e8

1 file changed

Lines changed: 2 additions & 16 deletions

File tree

packages/core/src/rest/soytify/Soytify.types.ts

Lines changed: 2 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -312,21 +312,7 @@ export interface AlbumOrPrereleasePage {
312312
items: (AlbumResponseWrapper | PreReleaseResponseWrapper)[];
313313
totalCount: number;
314314
}
315-
export interface ArtistOverviewData {
316-
__typename: 'Artist';
317-
discography: Discography;
318-
goods: Goods;
319-
headerImage: CoverArtSource | null;
320-
id: string;
321-
preRelease: PreReleaseResponseWrapper | null;
322-
profile: ArtistProfile;
323-
relatedContent: RelatedContent;
324-
saved: boolean;
325-
sharingInfo: SharingInfo;
326-
stats: ArtistStats;
327-
uri: string;
328-
visuals: ArtistVisuals;
329-
}
315+
330316
export interface ArtistStats {
331317
followers: number;
332318
monthlyListeners: number;
@@ -416,7 +402,7 @@ export interface TopTracksSection {
416402
// Response objects
417403
export interface SoytifyArtistOverviewResponse {
418404
data: {
419-
artistUnion: ArtistOverviewData;
405+
artistUnion: Artist;
420406
};
421407
extensions: {
422408
requestIds: {

0 commit comments

Comments
 (0)