vtex
Version:
The platform for e-commerce apps
25 lines (24 loc) • 798 B
TypeScript
import { CustomCommand } from '../api/oclif/CustomCommand';
export default class Deprecate extends CustomCommand {
static description: string;
static examples: string[];
static flags: {
yes: import("@oclif/parser/lib/flags").IBooleanFlag<boolean>;
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 strict: boolean;
static args: ({
name: string;
required: boolean;
description: string;
multiple?: undefined;
} | {
name: string;
required: boolean;
multiple: boolean;
description: string;
})[];
run(): Promise<void>;
}