Files
crawlab/frontend/crawlab-ui/typings/interfaces/element/index.d.ts
Marvin Zhang 864ab25d83 feat: add SVG assets and update component interfaces
- 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.
2025-04-16 10:36:52 +08:00

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;
}
}