jobsuche-api-js
Version:
A JavaScript wrapper for the Arbeitsagentur jobs API, allowing developers to easily integrate job search functionality into their applications.
12 lines (11 loc) • 506 B
TypeScript
declare const host = "rest.arbeitsagentur.de";
declare const headers: any;
declare const https = "https://";
declare const authSuffix = "/oauth/gettoken_cc";
declare const jobLink: string;
declare const logoLink: string;
declare const jobDetailV2Link: string;
declare const jobDetailV3Link: string;
declare const companyLogoV3: string;
declare const companyInfoLink: string;
export { headers, host, authSuffix, jobLink, logoLink, jobDetailV2Link, jobDetailV3Link, https, companyLogoV3, companyInfoLink, };