hh-node
Version:
Headhunter api library
14 lines (13 loc) • 379 B
text/typescript
/**
*
* Опции для создания инстанса класса HeadHunter
* {publicId} - публичный ключ с https://dev.hh.ru
* {privateKey} - приватный ключ с https://dev.hh.ru
* {endpoint} - Endpoint для запросов
*
*/
export interface Options {
publicId: string;
privateKey: string;
endpoint?: string;
}