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.
20 lines • 574 B
TypeScript
/**
* Templates for generating React service context
*/
export interface DomainInfo {
name: string;
capitalizedName: string;
}
/**
* Generate empty service context template
*/
export declare const getEmptyServiceContextTemplate: () => string;
/**
* Generate service context template with domains
*/
export declare const getServiceContextTemplate: (domains: DomainInfo[]) => string;
/**
* Generate test template for service context
*/
export declare const getServiceContextTestTemplate: (domains: DomainInfo[]) => string;
//# sourceMappingURL=context.d.ts.map