UNPKG

revolutionary-ui

Version:

Revolutionary UI v3.0 - AI-Powered Interactive CLI with 10+ AI providers, website inspiration analyzer, and advanced code generation

21 lines (20 loc) 786 B
/** * UI Component Libraries Configuration for Revolutionary UI Factory * Comprehensive list of all installed UI libraries and design systems */ export interface UILibraryConfig { id: string; name: string; version: string; category: 'component-library' | 'design-system' | 'utility' | 'css-framework'; description: string; documentation: string; packageName: string; frameworks?: string[]; features: string[]; icon?: string; } export declare const UI_LIBRARIES: UILibraryConfig[]; export declare const getUILibraryById: (id: string) => UILibraryConfig | undefined; export declare const getUILibrariesByCategory: (category: string) => UILibraryConfig[]; export declare const getUILibrariesByFramework: (framework: string) => UILibraryConfig[];