UNPKG

@nestjs/swagger

Version:

Nest - modern, fast, powerful node.js web framework (@swagger)

14 lines (13 loc) 719 B
import { Type } from '@nestjs/common'; import { SchemaObject } from '../interfaces/open-api-spec.interface'; import { FactoriesNeededByResponseFactory } from '../services/response-object-factory'; export declare const exploreGlobalApiResponseMetadata: (schemas: Record<string, SchemaObject>, metatype: Type<unknown>, factories: FactoriesNeededByResponseFactory) => { responses: { [x: string]: boolean; }; }; export declare const exploreApiResponseMetadata: (schemas: Record<string, SchemaObject>, factories: FactoriesNeededByResponseFactory, instance: object, prototype: Type<unknown>, method: Function) => import("lodash").Dictionary<boolean> | { [status]: { description: string; }; };