UNPKG

kepler.gl

Version:

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

23 lines (22 loc) 795 B
import { MessageModel } from '@openassistant/core'; import { AiAssistantConfig } from './reducers'; export declare const UPDATE_AI_ASSISTANT_CONFIG: string; export declare const UPDATE_AI_ASSISTANT_MESSAGES: string; export declare const SET_START_SCREEN_CAPTURE: string; export declare const SET_SCREEN_CAPTURED: string; export declare function updateAiAssistantConfig(config: AiAssistantConfig): { type: string; payload: AiAssistantConfig; }; export declare function updateAiAssistantMessages(messages: MessageModel[]): { type: string; payload: MessageModel[]; }; export declare function setStartScreenCapture(flag: boolean): { type: string; payload: boolean; }; export declare function setScreenCaptured(screenshot: string): { type: string; payload: string; };