UNPKG

jobberjs

Version:

3rd party library for retrieving jobs from job boards

16 lines (15 loc) 386 B
export declare type JobSearchItem = { /** * Unique Indeed Id of the job */ id: string; title: string; company: string; location: string; }; /** * Takes Indeed search html results and returns an array of JobSearchItem * @param html Indeed search html response */ declare function searchParser(html: string): JobSearchItem[]; export default searchParser;