Interface IContextMenuItemComponentProps

interface IContextMenuItemComponentProps {
    api: DockviewApi;
    close: (() => void);
    componentProps?: object;
    group: DockviewGroupPanel;
    panel: IDockviewPanel;
}

Properties

close: (() => void)

Call to close the context menu

Type declaration

    • (): void
    • Returns void

componentProps?: object