( configPath: string, runtimeFlags: RuntimeFlags )
| 243 | } |
| 244 | |
| 245 | function deleteCredentialsFromKeyring( |
| 246 | configPath: string, |
| 247 | runtimeFlags: RuntimeFlags |
| 248 | ): boolean { |
| 249 | const entry = createKeyringEntry(configPath, runtimeFlags); |
| 250 | return entry.deleteCredential(); |
| 251 | } |
| 252 | |
| 253 | function deleteCredentialsFile(configPath: string): void { |
| 254 | cliConfig.deleteAuthConfigFile(configPath); |
no test coverage detected