UNPKG

job-hoarder

Version:

Job board aggregator to pull in standardized job postings from company job pages

37 lines (36 loc) 846 B
declare type LeverParams = { companyId: string; }; export default class Lever implements JobClient { private companyId; private parser; constructor(params?: string | LeverParams); /** * Gets jobs from job board * @returns {array} List of jobs */ getJobs(): Promise<{ id: any; url: any; title: any; jobLocation: any; datePosted: Date; department: string; description: string; }[]>; /** * Gets job details from job board * @param {string} id Id of job to retrieve * @returns {object} Job assigned to Id */ getJob(id: string): Promise<{ id: any; url: any; title: any; jobLocation: any; datePosted: Date; department: string; description: string; }>; } export {};