UNPKG

@serptech/api

Version:

Library for work with SERP API

16 lines (11 loc) 291 B
export interface ApiSettingsInterface { httpClient: any; } export interface ApiInterface {} class Api implements ApiInterface { protected httpClient: any; constructor(settings: ApiSettingsInterface) { this.httpClient = settings.httpClient; } } export { Api };