/// import yargs from "yargs"; import Command from "./command"; import type { CliOptions, RunCallback } from "./apm-cli"; import { PathLike } from "fs-plus"; export default class Unlink extends Command { parseOptions(argv: string[]): yargs.Argv<{ all: boolean; }>; getDevPackagePath(packageName: string): string; getPackagePath(packageName: string): string; unlinkPath(pathToUnlink: PathLike): boolean; unlinkAll(options: CliOptions, callback: (error?: string | Error) => any): any; unlinkPackage(options: CliOptions, callback: (error?: string | Error) => any): any; run(options: CliOptions, callback: RunCallback): any; }