export type Vector2D = [number, number]; export type Vector3D = [number, number, number]; export type Vector = Vector2D | Vector3D;