API 参考
    正在准备搜索索引...

    Interface for objects that deal with (un)marshalling data.

    interface ValueTransformer {
        from(value: any): any;
        to(value: any): any;
    }
    索引

    方法

    方法

    • Used to unmarshal data when reading from the database.

      参数

      • value: any

      返回 any

    • Used to marshal data when writing to the database.

      参数

      • value: any

      返回 any