StatesWorkspaceSchema TypeAlias
Schema for a StatesWorkspace workspace.
Keys of schema are the keys of the StatesWorkspace providing access to State objects.
Signature
export type StatesWorkspaceSchema<Keys extends string = string> = {
[Key in Keys]: StatesWorkspaceEntry<Key, InternalTypes.ValueDirectoryOrState<unknown>>;
};
Type Parameters
| Parameter | Constraint | Default | Description |
|---|---|---|---|
| Keys | string | string |