UNPKG

instamancer

Version:

Scrape the Instagram API with Puppeteer

12 lines (11 loc) 254 B
/** * A set of post ids used to detect duplicates */ export declare class PostIdSet { private ids; /** * Add a post id to the set. * @return true if the id was already in the set, false if not. */ add(id: string): boolean; }