@goongmaps/goong-map-react
Version:
A fork of react-map-gl. React components for Goong JS
26 lines (24 loc) • 570 B
Flow
/**
* Flowtype definitions for attribution-control
* Generated by Flowgen from a Typescript Definition
* Flowgen v1.21.0
*/
import { Element } from "react";
import { MapControlProps } from "./use-map-control";
export type AttributionControlProps = {
...MapControlProps,
...$Rest<
{
toggleLabel: string,
className: string,
style: Object,
compact: boolean,
customAttribution: string | [string],
...
},
{ ... }
>,
};
declare export default function AttributionControl(
props: AttributionControlProps
): Element;