Type Alias Point

Point: {
    x: number;
    y: number;
    z?: number;
}

A point, consisting of x, y and maybe z fields.