Interface IAction<T, U>

The action interface which is an object with the act method.

interface IAction<T, U> {
    act(...args): U;
}

Type Parameters

  • T extends any[]
  • U = any

Implemented by

Methods

Methods

  • Parameters

    • Rest ...args: T

    Returns U