/** * Generic Website Scraper * * Scrape OG tags and JSON-LD from any URL. * Used as fallback when no platform-specific scraper exists. * * Security: * - Blocks requests to our own domains * - Validates URLs to prevent path traversal * * Redirect handling: * - Manually follows up to 10 redirects * - Captures final URL even if destination fails (valuable for shortened URLs) */ import type { ScrapeOutcome, ScraperConfig } from './types'; /** * Scrape metadata from any URL using OG tags and JSON-LD. * Manually follows redirects to capture final URL even if destination fails. */ export declare function scrapeGeneric(url: string, config?: ScraperConfig): Promise; //# sourceMappingURL=generic.d.ts.map