@odata2ts/odata-query-objects
Version:
Q-Objects are the magic sauce for the odata-query-builder and allow for renaming and type conversion
23 lines • 666 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.getIdentityConverter = exports.IdentityConverterImpl = void 0;
class IdentityConverterImpl {
constructor() {
this.id = "Identity";
this.from = "any";
this.to = "any";
}
convertFrom(value) {
return value;
}
convertTo(value) {
return value;
}
}
exports.IdentityConverterImpl = IdentityConverterImpl;
const identityConverter = new IdentityConverterImpl();
function getIdentityConverter() {
return identityConverter;
}
exports.getIdentityConverter = getIdentityConverter;
//# sourceMappingURL=IdentityConverter.js.map