schangxiang@126.com
2025-09-19 9be9c3784b2881a3fa25e93ae2033dc2803c0ed0
1
{"version":3,"sources":["../../src/decorator/options/ValueTransformer.ts"],"names":[],"mappings":"","file":"ValueTransformer.js","sourcesContent":["/**\n * Interface for objects that deal with (un)marshalling data.\n */\nexport interface ValueTransformer {\n\n    /**\n     * Used to marshal data when writing to the database.\n     */\n    to(value: any): any;\n\n    /**\n     * Used to unmarshal data when reading from the database.\n     */\n    from(value: any): any;\n\n}\n"],"sourceRoot":"../.."}