UNPKG

mercadolibre-car-scraper

Version:

TypeScript-based web scraper for MercadoLibre car listings with foreign currency prices

16 lines (13 loc) 328 B
interface CarListing$1 { titulo: string; simbolo: string; precio: string; frontImage: string; } declare function scrapeMercadoLibre(producto: string): Promise<CarListing$1[]>; interface CarListing { titulo: string; simbolo: string; precio: string; } export { type CarListing, scrapeMercadoLibre };