UNPKG

ts-odata-client

Version:
14 lines (13 loc) 388 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.ODataContext = void 0; /** * Base ODataContext class; expected to implement specific versions of OData. */ var ODataContext = /** @class */ (function () { function ODataContext(basePath) { this.basePath = basePath; } return ODataContext; }()); exports.ODataContext = ODataContext;