UNPKG

@paultaku/node-mock-server

Version:

A TypeScript-based mock server with automatic Swagger-based mock file generation

13 lines 509 B
/** * CLI Tools Domain - Public Interface * * This domain handles command-line interface operations. * Provides CLI commands for mock generation and server management. * * Bounded Context: CLI Tools * Responsibility: Parse CLI arguments and execute commands */ export { executeGenerateCommand } from './generate-command'; export { createGenerateCommand, parseGenerateOptions } from './command-parser'; export type { GenerateCommandOptions } from './command-parser'; //# sourceMappingURL=index.d.ts.map