import { DmsApiConfiguration } from './dms-api-configuration'; import { HttpClient } from '@angular/common/http'; /** * Base class for services */ export declare class BaseClient { protected config: DmsApiConfiguration; protected http: HttpClient; constructor(config: DmsApiConfiguration, http: HttpClient); private _rootUrl; /** * Returns the root url for all operations in this service. If not set directly in this * service, will fallback to `DmsApiConfiguration.rootUrl`. */ /** * Sets the root URL for API operations in this service. */ rootUrl: string; }