UNPKG

mercari

Version:

Scraper for JP site 'mercari' to check for stuff

13 lines (12 loc) 284 B
declare type Options = { maxPages: number; }; export declare function search(query: string, options?: Options): Promise<Item[]>; declare type Item = { productURL: string; imageURL: string; productName: string; price: number; productCode: string; }; export {};