kepler.gl
Version:
kepler.gl is a webgl based application to visualize large scale location data in the browser
19 lines (18 loc) • 924 B
TypeScript
import React from 'react';
import { InteractionConfig } from '@kepler.gl/types';
import { VisStateActions } from '@kepler.gl/actions';
import { Datasets } from '@kepler.gl/table';
import InteractionPanelFactory from './interaction-panel/interaction-panel';
import PanelTitleFactory from './panel-title';
import { PanelMeta } from './common/types';
declare type InteractionManagerProps = {
interactionConfig: InteractionConfig;
datasets: Datasets;
visStateActions: typeof VisStateActions;
panelMetadata: PanelMeta;
};
declare function InteractionManagerFactory(InteractionPanel: ReturnType<typeof InteractionPanelFactory>, PanelTitle: ReturnType<typeof PanelTitleFactory>): React.FC<InteractionManagerProps>;
declare namespace InteractionManagerFactory {
var deps: ((() => React.FC<import("./panel-title").PanelTitleProps>) | typeof InteractionPanelFactory)[];
}
export default InteractionManagerFactory;