import { BaseCommand } from '@yarnpkg/cli'; import { InstallMode } from '@yarnpkg/core'; import { Usage } from 'clipanion'; export default class UpgradeInteractiveCommand extends BaseCommand { static paths: string[][]; static usage: Usage; mode: InstallMode | undefined; execute(): Promise<0 | 1>; }