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.

16 lines • 499 B
/** * CRUD test templates */ /** * Gets the list of CRUD test file names for a module */ export declare const getCrudTestFileNames: () => string[]; /** * Generates test file content for CRUD operations */ export declare const generateCrudTestContent: ({ operation, moduleName, testType, }: { operation: string; moduleName: string; testType: "success" | "validation" | "duplicate" | "unauthorized" | "not-found" | "invalid-id"; }) => string; //# sourceMappingURL=crud.tests.d.ts.map