| 12 | * Modelled on a Security Scheme Object https://spec.openapis.org/oas/v3.1.0#security-scheme-object |
| 13 | */ |
| 14 | export interface APIKeyAuth extends Authentication { |
| 15 | type: "apiKey"; |
| 16 | name: string; |
| 17 | } |
| 18 | |
| 19 | export interface APIKeyAuthHeader extends APIKeyAuth { |
| 20 | in: "header"; |
nothing calls this directly
no outgoing calls
no test coverage detected