UNPKG

@odata2ts/odata-query-objects

Version:

Q-Objects are the magic sauce for the odata-query-builder and allow for renaming and type conversion

16 lines 399 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.QNoopPath = void 0; class QNoopPath { constructor(path) { this.path = path; if (!path || !path.trim()) { throw new Error("Path must be supplied!"); } } getPath() { return this.path; } } exports.QNoopPath = QNoopPath; //# sourceMappingURL=QNoopPath.js.map