Interface AeComponentMember<TValue, TClass, TUpdate>

An amended entity representing a component member to amend.

Type Parameters

  • TValue extends TUpdate

    Amended member value type.

  • TClass extends ComponentClass = Class

    Amended component class type.

  • TUpdate = TValue

    Amended member update type accepted by its setter.

Hierarchy

  • AeComponent<TClass>
  • AeMember<TValue, TClass, TUpdate>
    • AeComponentMember

Properties

amendedClass: TClass

Amended class constructor.

componentDef: ComponentDef<any>

Amended component definition.

configurable: boolean

Whether the member is configurable.

enumerable: boolean

Whether the member is enumerable.

featureDef: FeatureDef

Amended feature definition options.

key: string | symbol

A key of the instance member.

Updates to this property are always ignored. The member key can not be changed.

readable: boolean

Whether the member is writable.

Updates to this property are always ignored.

Set to true when get property assigned. Set to false when set property assigned, while the get one is not. Remains unchanged when neither get, nor set properties assigned.

writable: boolean

Whether the member is writable.

Updates to this property are always ignored.

Set to true when set property assigned. Set to false when get property assigned, while the set one is not. Remains unchanged when neither get, nor set properties assigned.

Methods

  • Reads the value of this member in the target instance.

    Throws if the member is not readable.

    Returns

    Member value.

    Parameters

    • this: void
    • instance: InstanceType<TClass>

      Target instance.

    Returns TValue

  • Assigns the value of this member in the target instance.

    Throw is the member is not writable.

    Parameters

    • this: void
    • instance: InstanceType<TClass>

      Target instance.

    • update: TUpdate

      Updated member value.

    Returns void

Generated using TypeDoc