Interface IPersistStorageData<T>

Defines the structure for storage data persistence in the swarm system. Wraps an array of storage data for persistence, used by PersistStorageUtils.

interface IPersistStorageData<T extends IStorageData = IStorageData> {
    data: T[];
}

Type Parameters

Properties

Properties

data: T[]

The array of storage data to persist (e.g., key-value pairs or records)