Personal Site
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Update exports and add client safe version

+6 -4
+2
src/components/playing/spotify/client.ts
··· 1 + export * from "./types"; 2 + export * from "./errors"
+4 -4
src/components/playing/spotify/index.ts
··· 1 1 import getAccessCode from "./access"; 2 - import { SpotifyError } from "./errors"; 3 - import { getSpotifyApi, spotifyNowPlaying as nowPlaying } from "./api"; 4 - 5 - export { getAccessCode, getSpotifyApi, nowPlaying, SpotifyError }; 2 + export { getAccessCode }; 3 + export * from "./errors"; 4 + export * from "./api"; 5 + export * from "./types"