/** * Spotify Scraper * * Uses Spotify's oEmbed API to get metadata. * Spotify's web player doesn't render og tags in HTML (it's a JS SPA), * so we must use their oEmbed endpoint instead. */ import type { ScrapeOutcome, ScraperConfig } from './types'; /** * Extract Spotify content type and ID from URL. */ export declare function parseSpotifyUrl(url: string): { type: string; id: string; } | null; /** * Scrape metadata from a Spotify URL using oEmbed API. */ export declare function scrapeSpotify(url: string, config?: ScraperConfig): Promise; //# sourceMappingURL=spotify.d.ts.map