bento-charts
Version:
Charts library for Bento-platform
19 lines (18 loc) • 472 B
TypeScript
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;
}