UNPKG

@wwdrew/expo-spotify-sdk

Version:
15 lines 462 B
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