Member Junction
    Preparing search index...

    Interface for workspace manager operations needed by user menu

    interface WorkspaceManagerRef {
        GetActiveTabId?: () => string | null;
        GetConfiguration: () => unknown;
        GetTab?: (tabId: string) => WorkspaceTabRef | undefined;
    }
    Index

    Properties

    GetActiveTabId?: () => string | null
    GetConfiguration: () => unknown
    GetTab?: (tabId: string) => WorkspaceTabRef | undefined