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.

18 lines • 516 B
/** * Custom validator templates */ /** * Gets custom validator file names for a module */ export declare const getCustomValidatorFileNames: ({ customNames, moduleName, }: { customNames: string[]; moduleName: string; }) => string[]; /** * Generates TypeScript validator file content for custom operations */ export declare const generateCustomValidatorContent: ({ customName, moduleName, }: { customName: string; moduleName: string; }) => string; //# sourceMappingURL=custom.validators.d.ts.map