Type Alias IFlexibleSerdeAdapter<TSerializedValue>

IFlexibleSerdeAdapter: ISerde<TSerializedValue> & {
    registerCustom<TCustomSerialized, TCustomDeserialized>(
        transformer: ISerdeTransformerAdapter<
            TCustomSerialized,
            TCustomDeserialized,
        >,
    ): void;
}

The IFlexibleSerdeAdapter contract defines a standard way to serialize and deserialize both plain data and custom classes.

IMPORT_PATH: "@daiso-tech/core/serde/contracts"

Type Parameters

  • TSerializedValue = unknown

Type declaration