import { BaseCommand } from '@yarnpkg/cli'; import { Usage } from 'clipanion'; export default class LinkCommand extends BaseCommand { static paths: string[][]; static usage: Usage; all: boolean; private: boolean; relative: boolean; destinations: string[]; execute(): Promise<0 | 1>; }