export interface Point { x: number; y: number; } export type Line = Array; export type Polygon = Array; export type Geometry = Point | Line | Polygon; export type MultiPoint = Array; export type MultiLine = Array; export type MultiPolygon = Array; export type GeometryCollection = Array;