Interface CommonApi<T>

interface CommonApi<T> {
    height: number;
    onDidLayoutChange: DockviewEvent<void>;
    onDidLayoutFromJSON: DockviewEvent<void>;
    width: number;
    clear(): void;
    dispose(): void;
    focus(): void;
    fromJSON(data): void;
    layout(width, height): void;
    toJSON(): T;
}

Type Parameters

  • T = any

Implemented by

Properties

height: number
onDidLayoutChange: DockviewEvent<void>
onDidLayoutFromJSON: DockviewEvent<void>
width: number

Methods

Generated using TypeDoc