(loc: Location)
| 165 | } |
| 166 | |
| 167 | uninstall(loc: Location): WriteResult { |
| 168 | const files: WriteResult['files'] = []; |
| 169 | files.push(removeMcpEntryAt(configPath(loc))); |
| 170 | files.push(removeInstructionsEntry(loc)); |
| 171 | if (loc === 'global') files.push(...cleanupLegacyWindowsState()); |
| 172 | return { files }; |
| 173 | } |
| 174 | |
| 175 | printConfig(loc: Location): string { |
| 176 | const target = configPath(loc); |
nothing calls this directly
no test coverage detected