Documentation
    Preparing search index...

    Interface WindowState

    Minimal universal window descriptor passed to layout strategies. (D2)

    const ws: WindowState = { id: 'win-1', focused: true, minimized: false,
    rect: { x: 0, y: 0, w: 800, h: 600 } };
    interface WindowState {
        focused: boolean;
        id: string;
        minimized: boolean;
        rect: Rect;
    }
    Index

    Properties

    focused: boolean
    id: string
    minimized: boolean
    rect: Rect