Files
cameleer-server/ui/src/swagger-ui-dist.d.ts

11 lines
350 B
TypeScript
Raw Normal View History

declare module 'swagger-ui-dist/swagger-ui-es-bundle.js' {
interface SwaggerUIOptions {
url?: string;
domNode?: HTMLElement;
deepLinking?: boolean;
requestInterceptor?: (req: Record<string, unknown>) => Record<string, unknown>;
[key: string]: unknown;
}
export default function SwaggerUI(options: SwaggerUIOptions): void;
}