in src/endpoints/CurrentUserEndpoints.ts [13:22]
constructor(api: SpotifyApi) {
super(api);
this.albums = new CurrentUserAlbumsEndpoints(api);
this.audiobooks = new CurrentUserAudiobooksEndpoints(api);
this.episodes = new CurrentUserEpisodesEndpoints(api);
this.playlists = new CurrentUserPlaylistsEndpoints(api);
this.shows = new CurrentUserShowsEndpoints(api);
this.tracks = new CurrentUserTracksEndpoints(api);
}