(configPath: string)
| 164 | } |
| 165 | |
| 166 | export function readAuthConfigFile(configPath: string): AuthConfig { |
| 167 | return readConfigFile(configPath, authConfigSchema); |
| 168 | } |
| 169 | |
| 170 | export function readAuthFileConfig(configPath: string): AuthFileConfig { |
| 171 | return parseAuthFileConfig(readJsonFileSync(configPath)); |
no test coverage detected