@lobehub/chat
Version:
Lobe Chat - an open-source, high-performance chatbot framework that supports speech synthesis, multimodal, and extensible Function Call plugin system. Supports one-click free deployment of your private ChatGPT/LLM web application.
18 lines (14 loc) • 464 B
text/typescript
import { InterceptRouteParams, InterceptRouteResponse } from '../types/route';
export interface WindowsDispatchEvents {
/**
* 拦截客户端路由导航请求
* @param params 包含路径和来源信息的参数对象
* @returns 路由拦截结果
*/
interceptRoute: (params: InterceptRouteParams) => InterceptRouteResponse;
/**
* open the LobeHub Devtools
*/
openDevtools: () => void;
openSettingsWindow: (tab?: string) => void;
}