vtex
Version:
The platform for e-commerce apps
19 lines (18 loc) • 655 B
TypeScript
import { flags as oclifFlags } from '@oclif/command';
import { CustomCommand } from '../api/oclif/CustomCommand';
export default class Switch extends CustomCommand {
static description: string;
static examples: string[];
static flags: {
workspace: oclifFlags.IOptionFlag<string>;
verbose: import("@oclif/parser/lib/flags").IBooleanFlag<boolean>;
help: import("@oclif/parser/lib/flags").IBooleanFlag<void>;
trace: import("@oclif/parser/lib/flags").IBooleanFlag<boolean>;
};
static args: {
name: string;
required: boolean;
description: string;
}[];
run(): Promise<void>;
}