Type Alias SerializedCollection<TInput>

SerializedCollection: { items: TInput[]; version: "1" }

Serialized representation of an ICollection used for persistence and transport. Stores the collection items as a plain array alongside a schema version field to support future format migrations.

Type Parameters

  • TInput = unknown

    The element type of the serialized collection.

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