@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 • 516 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.QBinaryParam = void 0;
const QParam_1 = require("../QParam");
const UrlParamHelper_1 = require("../UrlParamHelper");
class QBinaryParam extends QParam_1.QParam {
constructor() {
super(...arguments);
this.getUrlConformValue = UrlParamHelper_1.formatLiteralParam;
this.parseValueFromUrl = UrlParamHelper_1.parseLiteral;
}
}
exports.QBinaryParam = QBinaryParam;
//# sourceMappingURL=QBinaryParam.js.map