Interface IFlexibleSerde<TSerializedValue>

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

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

interface IFlexibleSerde<TSerializedValue = unknown> {
    deserialize<TValue>(serializedValue: TSerializedValue): TValue;
    registerClass<TSerializedClassInstance>(
        class_: SerializableClass<TSerializedClassInstance>,
        prefix?: OneOrMore<string>,
    ): this;
    registerCustom<TCustomDeserialized, TCustomSerialized>(
        transformer: ISerdeTransformer<TCustomDeserialized, TCustomSerialized>,
        prefix?: OneOrMore<string>,
    ): this;
    registerEvent<TFields extends Record<string, unknown>>(
        eventClass: SerializableEventClass<TFields>,
        prefix?: OneOrMore<string>,
    ): this;
    serialize<TValue>(value: TValue): TSerializedValue;
}

Type Parameters

  • TSerializedValue = unknown

Hierarchy (View Summary)

Implemented by

Methods