UNPKG

hh-node

Version:
17 lines (13 loc) 365 B
import Api from './api'; import ApiService from './api/service'; import { Options } from './interfaces'; export class HeadHunter extends Api { protected client: ApiService; constructor(options: Options) { super(options); this.client = new ApiService(this.options); } public getClient(): ApiService { return this.client; } }