UNPKG

hh-node

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