UNPKG

@ivamuno/nestjs-openapi

Version:
9 lines (8 loc) 299 B
import { OpenAPIObject } from '@nestjs/swagger'; import { LogoOptions, TagGroupOptions } from './redocOptions.interface'; export interface RedocDocument extends Partial<any> { info: OpenAPIObject['info'] & { 'x-logo'?: LogoOptions; }; 'x-tagGroups': TagGroupOptions[]; }