UNPKG

@goongmaps/goong-map-react

Version:

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

25 lines (23 loc) 522 B
/** * Flowtype definitions for fullscreen-control * Generated by Flowgen from a Typescript Definition * Flowgen v1.21.0 */ import { Element } from "react"; import { MapControlProps } from "./use-map-control"; export type FullscreenControlProps = { ...MapControlProps, ...$Rest< { className: string, style: Object, container: HTMLElement, label: string, ... }, { ... } >, }; declare export default function FullscreenControl( props: FullscreenControlProps ): Element;