kepler.gl
Version:
kepler.gl is a webgl based application to visualize large scale location data in the browser
11 lines (10 loc) • 337 B
TypeScript
import React from 'react';
interface InfoHelperProps {
description: string;
containerClass?: string;
width?: number;
property?: string;
id?: string;
}
declare function InfoHelperFactory(): ({ description, property, containerClass, width, id }: InfoHelperProps) => React.JSX.Element;
export default InfoHelperFactory;