UNPKG

bento-charts

Version:
19 lines (18 loc) 472 B
export interface GeoJSONGeomPolygon { type: 'Polygon'; coordinates: number[][][]; } export interface BentoGeoJSONProperties { title: string; [x: string]: unknown; } export interface GeoJSONPolygonFeature { type: 'Feature'; geometry: GeoJSONGeomPolygon; properties: BentoGeoJSONProperties; } export interface GeoJSONPolygonOnlyFeatureCollection { type: 'FeatureCollection'; features: GeoJSONPolygonFeature[]; [x: string]: unknown; }