Interface IStorageData

Interface representing the data structure stored in the storage. Defines the minimum required properties for storage items.

interface IStorageData {
    id: StorageId;
}

Properties

Properties

id: StorageId

The unique identifier for the storage item, used for retrieval and removal.