openapi-generator-plus
Version:
Modular OpenAPI code generator written in TypeScript and Node.js
18 lines (15 loc) • 341 B
text/typescript
import { CodegenConfig } from '@openapi-generator-plus/types'
export interface CommandLineOptions {
config?: string
output?: string
generator?: string
version?: string
watch?: string
clean?: boolean
_: string[]
}
export interface CommandLineConfig extends CodegenConfig {
inputPath: string
outputPath: string
generator: string
}