Interface TabSetActionCreators

The tab set action creators.

interface TabSetActionCreators {
    registerTab(payload: RegisterTabActionCreatorPayload): {
        payload: RegisterTabActionCreatorPayload;
        type: string;
    };
    updateActiveTab(id: string): {
        payload: string;
        type: string;
    };
}

Methods

  • Updates the active tab, deselecting other tabs.

    Parameters

    • id: string

      The unique identifier of the target tab (e.g., "abc").

    Returns {
        payload: string;
        type: string;
    }

    A dispatchable action.

    • payload: string
    • type: string