UNPKG

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