UNPKG

@flexbase/openapi-generator

Version:
13 lines (12 loc) 320 B
import { Components } from './nodes/components.js'; import { Path } from './nodes/path.js'; import { Tag } from './nodes/tag.js'; export interface OptimizedDocument { title: string; apiName: string; description?: string; version: string; components: Components; paths: Path[]; tags: Tag[]; }