UNPKG

243 BTypeScriptView Raw
1export interface SwaggerDocumentOptions {
2 include?: Function[];
3 extraModels?: Function[];
4 ignoreGlobalPrefix?: boolean;
5 deepScanRoutes?: boolean;
6 operationIdFactory?: (controllerKey: string, methodKey: string) => string;
7}