UNPKG

@obliczeniowo/elementary

Version:
16 lines (15 loc) 352 B
import { Geometry } from './geometry'; import { LayerLike } from './layer-like'; export interface FeatureLike { feature: { geometry: Geometry[]; type: 'Feature' | string; layer: LayerLike; state: { [key: string]: any; }; properties?: { [key: string]: any; }; }; }