( deps: ResolvedDoctorDeps, input: string | undefined, cwd: string, )
| 217 | } |
| 218 | |
| 219 | async function resolveConfigTargetPath( |
| 220 | deps: ResolvedDoctorDeps, |
| 221 | input: string | undefined, |
| 222 | cwd: string, |
| 223 | ): Promise<string> { |
| 224 | return input === undefined ? deps.defaultConfigPath() : resolveInputPath(input, cwd); |
| 225 | } |
| 226 | |
| 227 | function resolveTuiTargetPath( |
| 228 | deps: ResolvedDoctorDeps, |
no test coverage detected