@mindkey/recruiting-api-client
Version:
The MindKey API Client allows easy access to your MindKey Recruiting data.
16 lines (15 loc) • 427 B
TypeScript
import { HttpError } from './errors';
import { JobAgentClient, LookupClient, VacancyClient } from './clients';
declare global {
interface ApiClient {
HttpError: typeof HttpError;
JobAgentClient: typeof JobAgentClient;
VacancyClient: typeof VacancyClient;
LookupClient: typeof LookupClient;
}
interface Window {
mindkey: {
apiClient: ApiClient;
};
}
}