(configPath: string)
| 204 | } |
| 205 | |
| 206 | export function deleteAuthConfigFile(configPath: string): void { |
| 207 | fs.rmSync(configPath, { force: true }); |
| 208 | } |
| 209 | |
| 210 | export function deleteAuthConfig(configDir: string): void { |
| 211 | deleteAuthConfigFile(getAuthConfigFilePath(configDir)); |