@nestjs/swagger
Version:
Nest - modern, fast, powerful node.js web framework (@swagger)
16 lines (15 loc) • 467 B
TypeScript
export interface SwaggerUiOptions {
initOAuth?: {
clientId?: string;
clientSecret?: string;
realm?: string;
appName?: string;
scopeSeparator?: string;
scopes?: string[];
additionalQueryStringParams?: Record<string, string>;
useBasicAuthenticationWithAccessCodeGrant?: boolean;
usePkceWithAuthorizationCodeGrant?: boolean;
};
persistAuthorization?: boolean;
[key: string]: any;
}