UNPKG

@gati-framework/cli

Version:

CLI tool for Gati framework - create, develop, build and deploy cloud-native applications

17 lines 453 B
/** * @module cli/utils/file-generator * @description Project scaffolding and file generation utilities */ export interface ProjectOptions { projectPath: string; projectName: string; description: string; author: string; template: string; skipInstall: boolean; } /** * Generate a new Gati project */ export declare function generateProject(options: ProjectOptions): Promise<void>; //# sourceMappingURL=file-generator.d.ts.map