UNPKG

509 BTypeScriptView Raw
1import { SwaggerUiOptions } from './swagger-ui-options.interface';
2export interface SwaggerCustomOptions {
3 useGlobalPrefix?: boolean;
4 explorer?: boolean;
5 swaggerOptions?: SwaggerUiOptions;
6 customCss?: string;
7 customCssUrl?: string | string[];
8 customJs?: string | string[];
9 customJsStr?: string | string[];
10 customfavIcon?: string;
11 swaggerUrl?: string;
12 customSiteTitle?: string;
13 validatorUrl?: string;
14 url?: string;
15 urls?: Record<'url' | 'name', string>[];
16}