@mindkey/recruiting-api-client
Version:
The MindKey API Client allows easy access to your MindKey Recruiting data.
19 lines (18 loc) • 523 B
TypeScript
import type { Lookups } from '../models';
import { HttpBackend } from '../helpers';
/**
* API client to make requests to the Lookup API.
*
* @public
*/
export declare class LookupClient {
private readonly baseUrl;
private readonly backend;
constructor(baseUrl: string, backend?: HttpBackend);
/**
* Gets all the lookups.
* @param customerId - Your customer id.
* @param language - The language to request.
*/
getLookups(customerId: string, language: string): Promise<Lookups>;
}