UNPKG

503 BTypeScriptView Raw
1import { INestApplication } from '@nestjs/common';
2import { OpenAPIObject, SwaggerCustomOptions, SwaggerDocumentOptions } from './interfaces';
3export declare class SwaggerModule {
4 static createDocument(app: INestApplication, config: Omit<OpenAPIObject, 'paths'>, options?: SwaggerDocumentOptions): OpenAPIObject;
5 static setup(path: string, app: INestApplication, document: OpenAPIObject, options?: SwaggerCustomOptions): void;
6 private static setupExpress;
7 private static setupFastify;
8}