Class PluginAbstract

Constructors

Methods

  • Destroys the plugin instance.

    Returns void

  • Gets the properties of the board.

    Returns Object

    • The board properties.
  • Gets the properties of a card.

    Parameters

    • task: Task

      The task associated with the card.

    Returns Object

    • The card properties.
  • Returns Promise<void>

  • Hook that is called after a task is deleted.

    Parameters

    • task: Task

      The deleted task.

    Returns void

  • Hook that is called before the board is updated.

    Returns Promise<void>

  • Hook that is called when the board is updated.

    Parameters

    • lists: List[]

      The updated lists.

    Returns Promise<void>

  • Hook that is called when a task is found.

    Parameters

    • task: Task

      The found task.

    Returns Promise<void>

  • Hook that is called when a task is updated.

    Parameters

    • task: Task

      The updated task.

    Returns void