( configPath: string, config: GlobalConfig )
| 157 | } |
| 158 | |
| 159 | export function writeGlobalConfigFile( |
| 160 | configPath: string, |
| 161 | config: GlobalConfig |
| 162 | ): void { |
| 163 | writeConfigFile(configPath, globalConfigSchema, config); |
| 164 | } |
| 165 | |
| 166 | export function readAuthConfigFile(configPath: string): AuthConfig { |
| 167 | return readConfigFile(configPath, authConfigSchema); |
nothing calls this directly
no test coverage detected