import { Command, flags } from '@oclif/command'; /** * Execute a command in each package directory. Note: commands with spaces and * pipes are supported, but must be wrapped in quotes. */ export default class Exec extends Command { /** * description */ static description: string; /** * flags */ static flags: { failFast: import("@oclif/parser/lib/flags").IBooleanFlag; 'fail-fast': import("@oclif/parser/lib/flags").IBooleanFlag; packageName: flags.IOptionFlag; package: flags.IOptionFlag; 'package-name': flags.IOptionFlag; silent: import("@oclif/parser/lib/flags").IBooleanFlag; }; /** * args */ static args: { name: string; required: boolean; }[]; /** * implementation */ run(): Promise; }