@openapi-generator-plus/plain-documentation-generator
Version:
An OpenAPI Generator Plus template for generating plain documentation
12 lines (11 loc) • 390 B
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[];
};
}