Interface IContentContainer

interface IContentContainer {
    closePanel: (() => void);
    dropTarget: Droptarget;
    element: HTMLElement;
    onDidBlur: DockviewEvent<void>;
    onDidFocus: DockviewEvent<void>;
    openPanel: ((panel) => void);
    dispose(): void;
    hide(): void;
    layout(width, height): void;
    renderPanel(panel, options): void;
    show(): void;
}

Hierarchy (view full)

Implemented by

Properties

closePanel: (() => void)

Type declaration

    • (): void
    • Returns void

dropTarget: Droptarget
element: HTMLElement
onDidBlur: DockviewEvent<void>
onDidFocus: DockviewEvent<void>
openPanel: ((panel) => void)

Type declaration

Methods

Generated using TypeDoc