ts-odata-client
Version:
OData TypeScript Client
14 lines (13 loc) • 388 B
JavaScript
;
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;