leds-spark-lib
Version:
Biblioteca de geração de código
27 lines • 920 B
TypeScript
/**
* Views Generator Module
*
* This module is responsible for generating Vue view components that represent
* different pages and screens in the application. It creates views with proper
* routing integration, state management, and UI interactions.
*
* Generated Views:
* - Login: Authentication view with form validation
* - Entity views (generated per module)
*/
import SEON from "seon-lib-implementation";
/**
* Main views generator function
*
* @param project_abstraction - Project metadata and structure information
* @param target_folder - Directory where view components will be generated
*
* Generated Features:
* - Form validation
* - State management integration
* - Modal system integration
* - Route handling
* - Authentication flows
*/
export declare function generate(project_abstraction: SEON.ProjectAbstraction, target_folder: string): void;
//# sourceMappingURL=generate.d.ts.map