( configDir: string, authConfig: AuthConfig )
| 197 | } |
| 198 | |
| 199 | export function writeAuthConfig( |
| 200 | configDir: string, |
| 201 | authConfig: AuthConfig |
| 202 | ): void { |
| 203 | writeAuthConfigFile(getAuthConfigFilePath(configDir), authConfig); |
| 204 | } |
| 205 | |
| 206 | export function deleteAuthConfigFile(configPath: string): void { |
| 207 | fs.rmSync(configPath, { force: true }); |
no test coverage detected