UNPKG

@wwdrew/expo-spotify-sdk

Version:

Expo module wrapping the native Spotify iOS (v5) and Android (v4) SDKs for OAuth authentication and App Remote playback control

13 lines 362 B
/** * Error subclass thrown by `authenticateAsync` and `refreshSessionAsync` * carrying a structured `code` field for branching. */ export class SpotifyError extends Error { code; constructor(code, message) { super(message); this.name = "SpotifyError"; this.code = code; } } //# sourceMappingURL=ExpoSpotifySDK.types.js.map