Skip to content

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 ParameterDefault typeDescription
TunknownThe type of the seed value.

Remarks

Represented as a readonly tuple of [SeedKey, T].