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 373 B
import { SpotifyError } from "../error"; export type ContentErrorCode = "NOT_CONNECTED" | "CONNECTION_LOST" | "CONTENT_API_UNAVAILABLE" | "UNKNOWN"; export declare class ContentError extends SpotifyError { readonly namespace: "Content"; readonly code: ContentErrorCode; constructor(code: ContentErrorCode, message: string); } //# sourceMappingURL=error.d.ts.map