UNPKG

@goongmaps/goong-map-react

Version:

A fork of react-map-gl. React components for Goong JS

18 lines (16 loc) 425 B
/** * Flowtype definitions for html-overlay * Generated by Flowgen from a Typescript Definition * Flowgen v1.21.0 */ import { Element } from "react"; import type { MapControlProps } from "../components/use-map-control"; declare type HTMLOverlayProps = { ...MapControlProps, ...{ redraw: Function, style?: Object, ... }, }; declare export default function HTMLOverlay(props: HTMLOverlayProps): Element;