UNPKG

576 BTypeScriptView Raw
1/// <reference types="lodash" />
2import { Type } from '@nestjs/common';
3import { SchemaObject } from '../interfaces/open-api-spec.interface';
4export declare const exploreGlobalApiResponseMetadata: (schemas: Record<string, SchemaObject>, metatype: Type<unknown>) => {
5 responses: import("lodash").Dictionary<boolean>;
6};
7export declare const exploreApiResponseMetadata: (schemas: Record<string, SchemaObject>, instance: object, prototype: Type<unknown>, method: Function) => import("lodash").Dictionary<boolean> | {
8 [x: number]: {
9 description: string;
10 };
11};