supervision-js
    Preparing search index...

    Interface BoxDrawInstruction

    Renderer-neutral box drawing instruction.

    Style implementations return this shape. Renderer backends translate it into their own drawing commands.

    interface BoxDrawInstruction {
        rect: Rect;
        shape: BoxShape;
        stroke?: StrokeStyle;
        fill?: FillStyle;
        cornerRadius?: number;
    }
    Index
    rect: Rect
    shape: BoxShape
    stroke?: StrokeStyle
    fill?: FillStyle
    cornerRadius?: number