Interface: MutableAccessible<T, I>
An accessible item that can accept inputs to change its state. The state of the item may be derived from the inputs directly or from transformed versions of the inputs.
Type parameters
Name | Type |
---|---|
T | T |
I | T |
Hierarchy
Accessible
<T
>↳
MutableAccessible
Implemented by
Methods
get
▸ get(): T
Gets this item's state.
Returns
T
This item's state.
Inherited from
Defined in
src/sdk/sub/Accessible.ts:9
set
▸ set(value
): void
Sets the state of this item.
Parameters
Name | Type | Description |
---|---|---|
value | I | The input used to change the state. |
Returns
void
Defined in
src/sdk/sub/Accessible.ts:21