Skip to main content

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

Extended by

Type Parameters

Type ParameterDefault type
T-
IT

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

Accessible.get


set()

set(value): void

Defined in: src/sdk/sub/Accessible.ts:21

Sets the state of this item.

Parameters

ParameterTypeDescription
valueIThe input used to change the state.

Returns

void