@redocly/respect-core
Version:
API testing framework core
11 lines • 565 B
TypeScript
import type { ExtendedSecurity, TestContext } from '../../types.js';
import type { OperationDetails } from '../description-parser/get-operation-from-description.js';
import type { Oas3SecurityScheme } from 'core/src/typings/openapi.js';
export declare function resolveSecurityScheme({ ctx, security, operation, }: {
ctx: TestContext;
security: ExtendedSecurity;
operation?: OperationDetails & {
securitySchemes?: Record<string, Oas3SecurityScheme>;
};
}): Oas3SecurityScheme | undefined;
//# sourceMappingURL=resolve-security-scheme.d.ts.map