@odata2ts/odata-query-objects
Version:
Q-Objects are the magic sauce for the odata-query-builder and allow for renaming and type conversion
14 lines • 422 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.QSelectExpression = void 0;
class QSelectExpression {
constructor(path) {
this.path = path ? path.trim() : undefined;
}
getPath() {
var _a;
return (_a = this.path) !== null && _a !== void 0 ? _a : "";
}
}
exports.QSelectExpression = QSelectExpression;
//# sourceMappingURL=QSelectExpression.js.map