Type Alias IDeserializer<TSerializedValue>

IDeserializer<TSerializedValue>: {
    deserialize<TValue>(serializedValue: TSerializedValue): TValue;
}

The IDeserializer contract defines a standard way to deserialize plain data, excluding support for custom classes.

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

Type Parameters

  • TSerializedValue = unknown

Type declaration