hosanna-ui-docs - v0.9.0
    Preparing search index...

    Interface IActionManager<T>

    Interface for managing actions of type HsAction<T>.

    interface IActionManager<T> {
        cancelPendingAction(action: null | HsAction.HsAction<T>): void;
        handleAction(action: HsAction.HsAction<T>): boolean;
        isActionValid(action: HsAction.HsAction<T>): boolean;
        manageAction(): boolean;
    }

    Type Parameters

    • T

      The type of the payload or data associated with the action.

    Implemented by

    Index

    Methods