Type alias SketchConstraintSolveSession

SketchConstraintSolveSession: {
    reset: (() => void);
    solve: ((input) => SketchConstraintSolveReport);
    solveAsync: ((input) => Promise<SketchConstraintSolveReport>);
}

Type declaration