Type Alias DesktopActionOptionsBeta

DesktopActionOptions: {
    autoSelectTab?: boolean;
    awaitShowTab?: boolean;
    besideTabId?: string;
    initialState?: any;
    modal?: boolean;
    newTab?: boolean;
    newTabset?: boolean;
    onCloseTab?: (() => void);
    preserve?: boolean;
    raiseOnly?: boolean;
    tabId?: string;
    with?: string;
}

Options for desktop actions.

Type declaration

  • Optional BetaautoSelectTab?: boolean

    Whether to auto-select the tab.

  • Optional BetaawaitShowTab?: boolean

    Wait for the tab to open

  • Optional BetabesideTabId?: string

    ID of the tab to place beside.

  • Optional BetainitialState?: any

    Initial state for the action.

  • Optional Betamodal?: boolean

    Whether to open in a modal window.

  • Optional BetanewTab?: boolean

    Whether to open in a new tab.

  • Optional BetanewTabset?: boolean

    Open tab in a new tabset

  • OptionalonCloseTab?: (() => void)

    Function to call on closing the tab.

      • (): void
      • Returns void

  • Optional Betapreserve?: boolean

    Whether to preserve the state of the tab after action is finished. Used with modal.

  • Optional BetaraiseOnly?: boolean

    Whether to raise the tab to the front.

  • Optional BetatabId?: string

    ID of the tab.

  • Optional Betawith?: string

    Additional options for the action.