Skip to main content

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

NameType
TT
IT

Hierarchy

Implemented by

Methods

get

get(): T

Gets this item's state.

Returns

T

This item's state.

Inherited from

Accessible.get

Defined in

src/sdk/sub/Accessible.ts:9


set

set(value): void

Sets the state of this item.

Parameters

NameTypeDescription
valueIThe input used to change the state.

Returns

void

Defined in

src/sdk/sub/Accessible.ts:21