Type Alias: SeedEntry<T>
ts
type SeedEntry<T> = readonly [SeedKey, T];Defined in: src/wirestate-core/types/initial-state.ts:36
Represents a single targeted seed entry.
Type Parameters
| Type Parameter | Default type | Description |
|---|---|---|
T | unknown | The type of the seed value. |
Remarks
Represented as a readonly tuple of [SeedKey, T].