Type alias StatefulAction

StatefulAction: {
    actionType: StatefulAction;
    onExecute: ((active) => void);
}

An action which returns the activation state.

Type declaration

  • Readonly actionType: StatefulAction
  • Readonly onExecute: ((active) => void)
      • (active): void
      • Parameters

        • active: boolean

        Returns void