| 6 | * Modelled on a Security Scheme Object https://spec.openapis.org/oas/v3.1.0#security-scheme-object |
| 7 | */ |
| 8 | export interface HTTPAuth extends Authentication { |
| 9 | type: "http"; |
| 10 | } |
| 11 | |
| 12 | export interface BearerAuthHeader extends HTTPAuth { |
| 13 | scheme: "Bearer"; |
nothing calls this directly
no outgoing calls
no test coverage detected