@odata2ts/odata-service
Version:
Main runtime dependency of odata2ts for generated odata client services
12 lines (11 loc) • 491 B
TypeScript
import { ODataHttpClient } from "@odata2ts/http-client-api";
import { ODataServiceOptions } from "./ODataServiceOptions";
import { ServiceStateHelper } from "./ServiceStateHelper.js";
/**
* The base class for the main OData service client.
*/
export declare class ODataService<in out ClientType extends ODataHttpClient> {
protected readonly __base: ServiceStateHelper<any>;
constructor(client: ClientType, basePath: string, options?: ODataServiceOptions);
getPath(): string;
}