jobsuche-api-js
Version:
A JavaScript wrapper for the Arbeitsagentur jobs API, allowing developers to easily integrate job search functionality into their applications.
9 lines (8 loc) • 553 B
TypeScript
import getJwt from "./auth/authApi";
import { searchParamsExample } from "./examples/searchParamsExample";
import { jobsSearchOld, jobsSearch } from "./api/jobsSearch";
import { fetchJobDetailsV3, fetchJobDetailsV2 } from "./api/jobDetails";
import authManager from "./auth/authManager";
import { getCompanyLogoURL } from "./api/companyLogo";
import { fetchCompanyInfo } from "./api/companyInfo";
export { getJwt, jobsSearch, jobsSearchOld, searchParamsExample, fetchJobDetailsV2, fetchJobDetailsV3, authManager, getCompanyLogoURL, fetchCompanyInfo, };