UNPKG

@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.

31 lines (27 loc) 559 B
export interface TableBasicInfo { count: number; name: string; type: 'BASE TABLE' | 'VIEW'; } export interface TableColumnInfo { defaultValue?: string; foreignKey?: { column: string; table: string; }; isPrimaryKey: boolean; name: string; nullable: boolean; type: string; } export interface PaginationParams { page: number; pageSize: number; sortBy?: string; sortOrder?: 'asc' | 'desc'; } export interface FilterCondition { column: string; operator: 'equals' | 'contains' | 'startsWith' | 'endsWith'; value: any; }