Skip to content

textmode.js / plugins / TextmodeExtensionDescriptor

Interface: TextmodeExtensionDescriptor<TInstance>

Descriptor for a plugin-provided method or accessor.

Type Parameters

Type ParameterDefault type
TInstance extends objectobject

Properties

PropertyTypeDescription
get?(this) => unknownAccessor getter. Mutually exclusive with value.
set?(this, value) => voidAccessor setter. Mutually exclusive with value.
value?(this, ...args) => unknownMethod implementation. Mutually exclusive with get and set.