UNPKG

@goongmaps/goong-map-react

Version:

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

23 lines (21 loc) 492 B
/** * Flowtype definitions for scale-control * Generated by Flowgen from a Typescript Definition * Flowgen v1.21.0 */ import { Element } from "react"; import { MapControlProps } from "./use-map-control"; declare type ScaleControlProps = { ...MapControlProps, ...$Rest< { className: string, style: Object, maxWidth: number, unit: string, ... }, { ... } >, }; declare export default function ScaleControl(props: ScaleControlProps): Element;