class Field { toDB(value) { return value; } fromDB(value) { return value; } constructor(config){ this.config = config; } } export { Field as default }; //# sourceMappingURL=field.mjs.map