UNPKG

449 BTypeScriptView Raw
1export interface SwaggerCustomOptions {
2 useGlobalPrefix?: boolean;
3 explorer?: boolean;
4 swaggerOptions?: Record<string, any>;
5 customCss?: string;
6 customCssUrl?: string;
7 customJs?: string;
8 customJsStr?: string;
9 customfavIcon?: string;
10 swaggerUrl?: string;
11 customSiteTitle?: string;
12 validatorUrl?: string;
13 url?: string;
14 urls?: Record<'url' | 'name', string>[];
15 initOAuth?: Record<string, any>;
16}