@wwdrew/expo-spotify-sdk
Version:
Expo Module for native Spotify SDK
15 lines • 462 B
JavaScript
import ExpoSpotifySDKModule from "./ExpoSpotifySDKModule";
function isAvailable() {
return ExpoSpotifySDKModule.isAvailable();
}
function authenticateAsync(config) {
if (!config.scopes || config.scopes?.length === 0) {
throw new Error("scopes are required");
}
return ExpoSpotifySDKModule.authenticateAsync(config);
}
const Authenticate = {
authenticateAsync,
};
export { isAvailable, Authenticate };
//# sourceMappingURL=index.js.map