UNPKG

revolutionary-ui

Version:

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

22 lines (21 loc) 769 B
/** * Framework configurations for Revolutionary UI Factory * All major JavaScript frameworks with latest versions */ export interface FrameworkConfig { id: string; name: string; version: string; icon: string; color: string; description: string; packageName: string; buildTool?: string; documentation: string; } export declare const FRAMEWORK_CONFIGS: FrameworkConfig[]; export declare const getFrameworkById: (id: string) => FrameworkConfig | undefined; export declare const getFrameworksByBuildTool: (buildTool: string) => FrameworkConfig[]; export declare const getSupportedFrameworkIds: () => string[]; export declare const frameworkIcons: Record<string, string>; export declare const frameworkColors: Record<string, string>;