import { WebApiClient } from "./web.api"; import { HttpErrorHandler, HandleError } from "./http-error-handler.service"; export declare class BaseService { protected readonly controller: string; protected readonly api: WebApiClient; protected readonly handleError: HandleError; constructor(controller: string, api: WebApiClient, httpErrorHandler: HttpErrorHandler); }