Type Alias SplinePoint

SplinePoint: {
    last: Point;
    type: "M";
} | {
    helper1: Point;
    helper2: Point;
    last: Point;
    type: "C";
}