@openapi-generator-plus/plain-documentation-generator
Version:
An OpenAPI Generator Plus template for generating plain documentation
14 lines (11 loc) • 365 B
text/typescript
import { JavaLikeOptions } from '@openapi-generator-plus/java-like-generator-helper'
/**
* Options specific to the template that the user can provide to the code generation process.
*/
export interface CodegenOptionsDocumentation extends JavaLikeOptions{
customTemplatesPath?: string
operations?: {
navStyle?: 'name' | 'full-path'
exclude?: string[]
}
}