UNPKG

hh-node

Version:
19 lines (14 loc) 351 B
import { Options } from '../interfaces'; abstract class Api { protected options: Options & { endpoint: string }; constructor(options: Options) { this.options = { endpoint: 'https://api.hh.ru', ...options, }; } public getEndpoint(): string { return this.options.endpoint; } } export default Api;