@vladimirdukelic/revolutionary-ui-factory
Version:
Revolutionary UI Factory System v2 - Generate ANY UI component for ANY framework with 60-95% code reduction
22 lines (21 loc) • 769 B
TypeScript
/**
* 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>;