UNPKG

kepler.gl

Version:

kepler.gl is a webgl based application to visualize large scale location data in the browser

8 lines (7 loc) 274 B
import type { ISource, CustomSource } from '../types'; export declare type SourceProps<SourceT> = (SourceT | CustomSource) & { id?: string; children?: any; }; declare function Source<SourceT extends ISource>(props: SourceProps<SourceT>): any; export default Source;