UNPKG

ruch

Version:

Revolutionary React TypeScript CLI with hexagonal architecture & AI-powered development assistance. Create maintainable, scalable applications with domain-driven design and integrated AI tooling.

13 lines 434 B
export interface DomainGenerationOptions { withUi: boolean; withStore: boolean; withQueries: boolean; withApi: boolean; } export interface GeneratedFile { path: string; content: string; } export declare function generateDomainFiles(domainName: string, options: DomainGenerationOptions): GeneratedFile[]; export declare const getIndexTemplate: (domainName: string) => string; //# sourceMappingURL=index.d.ts.map