UNPKG

504 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 private static serveStatic;
6 private static serveDocuments;
7 static setup(path: string, app: INestApplication, document: OpenAPIObject, options?: SwaggerCustomOptions): void;
8}