Interface: MutableAccessible<T, I>
Defined in: src/sdk/sub/Accessible.ts:16
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.
Extends
Accessible
<T
>
Extended by
Type Parameters
Type Parameter | Default type |
---|---|
T | - |
I | T |
Methods
get()
get():
T
Defined in: src/sdk/sub/Accessible.ts:9
Gets this item's state.
Returns
T
This item's state.
Inherited from
set()
set(
value
):void
Defined in: src/sdk/sub/Accessible.ts:21
Sets the state of this item.
Parameters
Parameter | Type | Description |
---|---|---|
value | I | The input used to change the state. |
Returns
void