Type alias SketchArc

SketchArc: SketchEntityBase & {
    center: Point2D;
    direction: "cw" | "ccw";
    end: Point2D;
    kind: "sketch.arc";
    start: Point2D;
}

Type declaration