Dockview
    Preparing search index...

    Interface SerializedDockview

    interface SerializedDockview {
        activeGroup?: string;
        edgeGroups?: SerializedEdgeGroups;
        floatingGroups?: SerializedFloatingGroup[];
        grid: {
            height: number;
            orientation: Orientation;
            root: SerializedGridObject<GroupPanelViewState>;
            width: number;
        };
        panels: Record<string, GroupviewPanelState>;
        popoutGroups?: SerializedPopoutGroup[];
    }
    Index

    Properties

    activeGroup?: string
    floatingGroups?: SerializedFloatingGroup[]
    grid: {
        height: number;
        orientation: Orientation;
        root: SerializedGridObject<GroupPanelViewState>;
        width: number;
    }
    panels: Record<string, GroupviewPanelState>
    popoutGroups?: SerializedPopoutGroup[]