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

10 lines 249 B
import { SpotifyError } from "../error"; export class PlayerError extends SpotifyError { namespace = "Player"; code; constructor(code, message) { super(message); this.code = code; } } //# sourceMappingURL=error.js.map