ts-db-helper
Version:
Simple ORM based on TypeScript
16 lines • 649 B
JavaScript
import * as tslib_1 from "tslib";
import { FieldSerializer } from './field-serializer';
var RealFieldSerializer = /** @class */ (function (_super) {
tslib_1.__extends(RealFieldSerializer, _super);
function RealFieldSerializer(fieldName, jsonKey, config) {
var _this = _super.call(this, fieldName, jsonKey, config) || this;
_this.rules.type = 'Real';
return _this;
}
RealFieldSerializer.prototype.checkFieldRules = function (data) {
return null;
};
return RealFieldSerializer;
}(FieldSerializer));
export { RealFieldSerializer };
//# sourceMappingURL=real.field-serializer.js.map