VariablesStore
ts
type VariablesStore = object;Defined in: stores/variables.ts:15
Store for managing runtime variables.
Variables are dynamically created and updated during execution (e.g. via functions, events, or operations) and can be accessed throughout the runtime.
Since
1.0.0
Author
Simon Kovtyk
Properties
addVariable
ts
addVariable: (name, value) => void;Defined in: stores/variables.ts:17
Parameters
| Parameter | Type |
|---|---|
name | string |
value | unknown |
Returns
void
variables
ts
variables: Variables;Defined in: stores/variables.ts:16