UNPKG

dasf-web

Version:

Web frontend components for the data analytics software framework (DASF)

16 lines (12 loc) 244 B
export interface Geometry { coordinates: number[]; type: string; } export interface Feature { geometry: Geometry; type: string; } export interface FeatureCollection<T extends Feature> { type: string; features: T[]; }