Configure

Hierarchy

  • Action
    • Configure

Properties

Methods - Factory

Methods - Other

Methods - called internally

Properties

abilityAlias?: string
callStack?: CallStackInfo[]

Methods - Factory

  • Sets the context's geolocation. Passing null or undefined emulates position unavailable.

    Parameters

    Returns Configure

    new Configure instance

    Example

    Configure.geolocation(
    { latitude: 59.95, longitude: 30.31667 }
    );
  • Emulates the context's network being offline or online.

    Parameters

    • network: "online" | "offline"

      the network condition.

    Returns Configure

    new Configure instance

    Example

    Configure.network("offline");
    

Methods - Other

  • Parameters

    • entry: CallStackInfo

    Returns void

  • Parameters

    • calledWith: CallStackCalledWith

    Returns void

  • Set the alias which is used for an underlying ability

    Parameters

    • alias: undefined | string

      with which an ability was initialized

    Returns this

    current action

Methods - called internally

  • configure the context.

    Parameters

    • actor: Actor

      Actor performing this action

    Returns Promise<void>

    Returns after checks, focuses the element, fills it and triggers an input event after filling.