mirror of
https://github.com/crawlab-team/crawlab.git
synced 2026-01-28 17:50:56 +01:00
- Introduced new SVG assets for various AI models including Anthropic, Azure, DeepSeek, Gemini, Mistral, OpenAI, and Qwen. - Updated the components index to include the new useAssistantConsole functionality. - Enhanced type definitions in the i18n and models interfaces to support new AI features, including chat message handling and model configurations. - Added new properties for better customization and management of AI models and chat conversations.
21 lines
430 B
Go
21 lines
430 B
Go
export declare global {
|
|
type BasicType =
|
|
| 'primary'
|
|
| 'success'
|
|
| 'warning'
|
|
| 'danger'
|
|
| 'info'
|
|
| 'text'
|
|
| 'default';
|
|
type BasicEffect = 'dark' | 'light' | 'plain';
|
|
type BasicSize = 'small' | 'default' | 'large';
|
|
|
|
type ElFormValidator = (rule: any, value: any, callback: any) => void;
|
|
|
|
interface ElFormRule {
|
|
required: boolean;
|
|
trigger: string;
|
|
validator: ElFormValidator;
|
|
}
|
|
}
|