(value: unknown)
| 51 | type PersistableAuthConfig = SharedAuthConfig; |
| 52 | |
| 53 | function parseCredentials(value: unknown): Credentials { |
| 54 | const { tokenSource, ...credentials } = cliConfig.parseAuthConfig(value); |
| 55 | return credentials; |
| 56 | } |
| 57 | |
| 58 | function formatCredStorageError(value: unknown, source: string): string { |
| 59 | try { |
no outgoing calls
no test coverage detected