@paultaku/node-mock-server
Version:
A TypeScript-based mock server with automatic Swagger-based mock file generation
12 lines • 428 B
TypeScript
/**
* Mock Generation Domain - Public Interface
*
* This domain handles parsing Swagger/OpenAPI specifications
* and generating mock response files.
*
* Bounded Context: Mock Generation
* Responsibility: Transform API specifications into mock data files
*/
export { generateMockFromSwagger } from './mock-file-generator';
export type { GenerationResult } from './mock-file-generator';
//# sourceMappingURL=index.d.ts.map