UNPKG

@crpt/react-map

Version:
13 lines (9 loc) 392 B
import { arrayOf, number, oneOf, oneOfType, shape } from 'prop-types'; import { geometryTypes } from './constants'; export var CoordinatesType = oneOfType([arrayOf(number), arrayOf(arrayOf(number)), arrayOf(arrayOf(arrayOf(number)))]); export var RadiusType = number; export var GeometryType = shape({ type: oneOf(geometryTypes), coordinates: CoordinatesType, radius: RadiusType });