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 372 B
import { SpotifyError } from "../error"; export type UserErrorCode = "NOT_CONNECTED" | "CONNECTION_LOST" | "INVALID_URI" | "OPERATION_NOT_ALLOWED" | "UNKNOWN"; export declare class UserError extends SpotifyError { readonly namespace: "User"; readonly code: UserErrorCode; constructor(code: UserErrorCode, message: string); } //# sourceMappingURL=error.d.ts.map