onshape-cadscript
    Preparing search index...

    Type Alias SketchConstraint

    SketchConstraint:
        | { first: string; id: string; second: string; type: "coincident" }
        | { entity: string; id: string; type: "horizontal" | "vertical" }
        | {
            first: string;
            id: string;
            second: string;
            type: "equal" | "parallel" | "perpendicular";
        }
        | {
            first: string;
            id: string;
            second?: string;
            type: "distance";
            value: Length;
        }
        | { entity: string; id: string; type: "diameter"; value: Length }
        | { entity: string; id: string; type: "fix" }