UNPKG

node-apis

Version:

🚀 Advanced TypeScript API generator with clean architecture, comprehensive testing, and automatic formatting. Generate production-ready Node.js APIs with complete integration test suites.

13 lines • 522 B
/** * Typed custom service templates - generates custom services with actual field names from parsed types */ import { ParsedTypePayload } from '../services/type-parser.service'; /** * Generates TypeScript service file content for custom operations with parsed types */ export declare const generateTypedCustomServiceContent: ({ customName, moduleName, parsedType, }: { customName: string; moduleName: string; parsedType: ParsedTypePayload; }) => string; //# sourceMappingURL=typed-custom.services.d.ts.map