kepler.gl
Version:
kepler.gl is a webgl based application to visualize large scale location data in the browser
9 lines (8 loc) • 346 B
TypeScript
import React, { ReactElement, JSXElementConstructor } from 'react';
export declare type MapControlTooltipProps = {
id: string;
message: string;
children?: ReactElement<any, string | JSXElementConstructor<any>>;
};
declare function MapControlTooltipFactory(): React.FC<MapControlTooltipProps>;
export default MapControlTooltipFactory;