kepler.gl
Version:
kepler.gl is a webgl based application to visualize large scale location data in the browser
24 lines (23 loc) • 1.07 kB
TypeScript
import React from 'react';
import '@openassistant/echarts/dist/index.css';
import '@openassistant/ui/dist/index.css';
import { ActionHandler } from '@kepler.gl/actions';
import { MapStyle } from '@kepler.gl/reducers';
import { VisState } from '@kepler.gl/schemas';
import { AiAssistantState } from '../reducers';
import { setScreenCaptured, setStartScreenCapture, updateAiAssistantMessages } from '../actions';
import { SelectedKeplerGlActions } from './ai-assistant-manager';
export declare type AiAssistantComponentProps = {
aiAssistant: AiAssistantState;
updateAiAssistantMessages: ActionHandler<typeof updateAiAssistantMessages>;
setStartScreenCapture: ActionHandler<typeof setStartScreenCapture>;
setScreenCaptured: ActionHandler<typeof setScreenCaptured>;
keplerGlActions: SelectedKeplerGlActions;
mapStyle: MapStyle;
visState: VisState;
};
declare function AiAssistantComponentFactory(): React.FC<AiAssistantComponentProps>;
declare namespace AiAssistantComponentFactory {
var deps: any[];
}
export default AiAssistantComponentFactory;