DynamicValue
ts
type DynamicValue =
| {
type: "static";
value: unknown;
}
| object & VariableWithAccess
| object & DynamicElementProps
| object & ExposableFn;Defined in: renderer/type.ts:213
Dynamic value definition used in properties.
Since
1.0.0
Author
David Schummer