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.

17 lines • 473 B
/** * CRUD validator templates */ /** * Gets the list of CRUD validator file names for a module */ export declare const getCrudValidatorFileNames: ({ moduleName }: { moduleName: string; }) => string[]; /** * Generates TypeScript validator file content for CRUD operations */ export declare const generateCrudValidatorContent: ({ operation, moduleName, }: { operation: string; moduleName: string; }) => string; //# sourceMappingURL=crud.validators.d.ts.map