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