UNPKG

437 BTypeScriptView Raw
1import { flags } from '@oclif/command';
2import BaseLegacyCommand from '../base-legacy-command';
3export default class Invoke extends BaseLegacyCommand {
4 static description: string;
5 static flags: {
6 help: import("@oclif/parser/lib/flags").IBooleanFlag<void>;
7 path: flags.IOptionFlag<string | undefined>;
8 };
9 static args: {
10 name: string;
11 required: boolean;
12 }[];
13 run(): Promise<void>;
14}