UNPKG

vtex

Version:

The platform for e-commerce apps

23 lines (22 loc) 742 B
import { CustomCommand } from '../api/oclif/CustomCommand'; export default class Undeprecate 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; multiple?: undefined; } | { name: string; required: boolean; multiple: boolean; })[]; run(): Promise<void>; }