leds-spark-lib
Version:
Biblioteca de geração de código
29 lines • 1.08 kB
TypeScript
/**
* Assets Generator Module
*
* This module generates static assets used throughout the application,
* including images, styles, and other static resources. It creates the
* necessary files in the assets directory for use in the Vue application.
*
* Generated Assets:
* - logo.png: Application logo in PNG format
* - logo.svg: Vector version of the logo
* - style.css: Global stylesheet with Tailwind integration
*/
import SEON from "seon-lib-implementation";
/**
* Main assets generator function
*
* Creates all static assets needed by the application.
*
* @param project_abstraction - Project metadata (not directly used in assets)
* @param target_folder - Directory where assets will be generated
*
* Assets Structure:
* assets/
* ├── logo.png - Bitmap logo for general use
* ├── logo.svg - Vector logo for scalable display
* └── style.css - Global styles with Tailwind
*/
export declare function generate(project_abstraction: SEON.ProjectAbstraction, target_folder: string): void;
//# sourceMappingURL=generate.d.ts.map