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

8 lines 425 B
import { SpotifyError } from "../error"; export type PlayerErrorCode = "NOT_CONNECTED" | "CONNECTION_LOST" | "PREMIUM_REQUIRED" | "INVALID_URI" | "INVALID_PARAMETER" | "OPERATION_NOT_ALLOWED" | "UNKNOWN"; export declare class PlayerError extends SpotifyError { readonly namespace: "Player"; readonly code: PlayerErrorCode; constructor(code: PlayerErrorCode, message: string); } //# sourceMappingURL=error.d.ts.map