UNPKG

geospatialdraw

Version:
14 lines (13 loc) 397 B
import * as React from 'react'; import { Shape } from '../../shape-utils'; import { GeometryJSON } from '../../geometry'; type Props = { /** Geometry GeoJSON */ geo: GeometryJSON; /** Okay button handler */ onOk: (geo: GeometryJSON) => void; /** Geometry shape */ shape: Shape; }; declare const AllShapesEditorDialog: React.FC<Props>; export default AllShapesEditorDialog;