UNPKG

@goongmaps/goong-map-react

Version:

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

19 lines (17 loc) 417 B
/** * Flowtype definitions for canvas-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 CanvasOverlayProps = { ...MapControlProps, ...{ redraw: Function, ... }, }; declare export default function CanvasOverlay( props: CanvasOverlayProps ): Element;