Interface Group

interface Group {
    clipPath?:
        | Circle
        | Ellipse
        | Equation
        | Image
        | Line
        | Path
        | Polygon
        | Polyline
        | Rectangle
        | Text;
    ensureOnCanvas: boolean;
    interactiveOnly: boolean;
    name: string;
    shapeType: Group;
    shapes: Shape[];
}

Hierarchy (view full)

Properties

clipPath?:
    | Circle
    | Ellipse
    | Equation
    | Image
    | Line
    | Path
    | Polygon
    | Polyline
    | Rectangle
    | Text
ensureOnCanvas: boolean
interactiveOnly: boolean
name: string
shapeType: Group
shapes: Shape[]