Type Alias Point

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

Point represents a point in 2D space, typically with x and y coordinates.