kepler.gl
Version:
kepler.gl is a webgl based application to visualize large scale location data in the browser
34 lines (33 loc) • 1.41 kB
TypeScript
import React from 'react';
import 'react-ai-assist/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 = {
theme: any;
aiAssistant: AiAssistantState;
updateAiAssistantMessages: ActionHandler<typeof updateAiAssistantMessages>;
setStartScreenCapture: ActionHandler<typeof setStartScreenCapture>;
setScreenCaptured: ActionHandler<typeof setScreenCaptured>;
keplerGlActions: SelectedKeplerGlActions;
mapStyle: MapStyle;
visState: VisState;
};
declare function AiAssistantComponentFactory(): React.ForwardRefExoticComponent<{
mapStyle: MapStyle;
aiAssistant: AiAssistantState;
updateAiAssistantMessages: ActionHandler<typeof updateAiAssistantMessages>;
setStartScreenCapture: ActionHandler<typeof setStartScreenCapture>;
setScreenCaptured: ActionHandler<typeof setScreenCaptured>;
keplerGlActions: SelectedKeplerGlActions;
visState: VisState;
} & {
theme?: any;
}>;
declare namespace AiAssistantComponentFactory {
var deps: any[];
}
export default AiAssistantComponentFactory;