(error?: string)
| 316 | } |
| 317 | |
| 318 | public help(error?: string): string | HelpError { |
| 319 | if (error) { |
| 320 | throw new HelpError(`\n${error}\n\n${helpOptions}`) |
| 321 | } |
| 322 | return MigrateDiff.help |
| 323 | } |
| 324 | } |
| 325 | |
| 326 | export function getRemovedTargetParameterHint(parameter: string): string | undefined { |