@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 • 358 B
TypeScript
import { SpotifyError } from "../error";
export type ImagesErrorCode = "NOT_CONNECTED" | "INVALID_URI" | "IMAGE_LOAD_FAILED" | "UNKNOWN";
export declare class ImagesError extends SpotifyError {
readonly namespace: "Images";
readonly code: ImagesErrorCode;
constructor(code: ImagesErrorCode, message: string);
}
//# sourceMappingURL=error.d.ts.map