import type { SwaggerConfigs } from 'swagger-ui-dist'; export type UIOAuthOptions = { clientId?: string; clientSecret?: string; realm?: string; appName?: string; scopeOperator?: string; scopes: string[] | string; additionalQueryStringParams?: Record; useBasicAuthenticationWithAccessCodeGrant?: boolean; usePkceWithAuthorizationCodeGrant?: boolean; }; export type UIOptions = SwaggerConfigs & { /** * OAuth Options */ oauth?: UIOAuthOptions; /** * Auth action. */ authAction?: Record; /** * The baseUrl defines the base url, * where the application is run. */ baseURL?: string; /** * the basePath defines the path relative to the fqdn * on which the application is run. */ basePath?: string; }; //# sourceMappingURL=type.d.ts.map