kepler.gl
Version:
kepler.gl is a webgl based application to visualize large scale location data in the browser
12 lines (11 loc) • 335 B
TypeScript
import React from 'react';
import { DataContainerInterface } from '@kepler.gl/utils';
declare type MiniDataset = {
dataContainer: DataContainerInterface;
type?: string;
};
export declare type DatasetInfoProps = {
dataset: MiniDataset;
};
export default function DatasetInfoFactory(): React.FC<DatasetInfoProps>;
export {};