(source: Secret | Credential)
| 105 | export const passthrough = none |
| 106 | |
| 107 | const credentialInput = (source: Secret | Credential) => |
| 108 | typeof source === "string" || Redacted.isRedacted(source) || Config.isConfig(source) |
| 109 | ? credentialFromSecret(source, "value") |
| 110 | : source |
| 111 | |
| 112 | export function bearer(source: Secret | Credential): Auth |
| 113 | export function bearer(source: Secret | Credential) { |
no test coverage detected