Type Alias: SeedsMap<T>
ts
type SeedsMap<T> = Map<SeedKey, T>;Defined in: src/wirestate-core/types/initial-state.ts:24
Represents a map of targeted seed values.
Type Parameters
| Type Parameter | Default type | Description |
|---|---|---|
T | unknown | The type of values stored in the map. |
Remarks
Used to store initial state values that are injected into services based on their class constructor or a custom token.