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