UNPKG

vtex

Version:

The platform for e-commerce apps

19 lines (18 loc) 603 B
import { CustomCommand } from '../api/oclif/CustomCommand'; export default class Release extends CustomCommand { static description: string; static examples: string[]; static flags: { 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; default: string; options: string[]; description: string; }[]; run(): Promise<void>; }