@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 • 377 B
TypeScript
import { SpotifyError } from "../error";
export type AppRemoteErrorCode = "CONNECTION_FAILED" | "CONNECTION_LOST" | "NOT_CONNECTED" | "UNKNOWN";
export declare class AppRemoteError extends SpotifyError {
readonly namespace: "AppRemote";
readonly code: AppRemoteErrorCode;
constructor(code: AppRemoteErrorCode, message: string);
}
//# sourceMappingURL=error.d.ts.map