UNPKG

@openapi-generator-plus/plain-documentation-generator

Version:
12 lines (11 loc) 390 B
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[]; }; }