@manhgdev/spotifyweb
Version:
Spotify library in typescript without using the Spotify Web API. No authentication required with automatic internal token generation.
17 lines (16 loc) • 393 B
TypeScript
export type SpotifyTrackCredits = {
trackUri: string;
trackTitle: string;
roleCredits: Array<{
roleTitle: string;
artists: Array<{
uri: string;
name: string;
imageUri: string;
subroles: Array<string>;
weight: number;
}>;
}>;
extendedCredits: Array<any>;
sourceNames: Array<string>;
};