hh-node
Version:
Headhunter api library
17 lines (13 loc) • 365 B
text/typescript
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;
}
}