Read $variable from the store
(name: string)
| 20 | export interface EvaluationContext { |
| 21 | /** Read $variable from the store */ |
| 22 | getState(name: string): unknown; |
| 23 | /** Resolve a reference to another declaration's evaluated value */ |
| 24 | resolveRef(name: string): unknown; |
| 25 | /** Extra scope for $value injection during reactive prop evaluation */ |
no outgoing calls