UNPKG

qforce

Version:

Commands to help with salesforce development.

18 lines (17 loc) 654 B
import { Command, flags } from '@oclif/command'; export default class DevDeploy extends Command { static description: string; static aliases: string[]; static flags: { help: import("@oclif/parser/lib/flags").IBooleanFlag<void>; username: flags.IOptionFlag<string | undefined>; file: flags.IOptionFlag<string | undefined>; diff: import("@oclif/parser/lib/flags").IBooleanFlag<boolean>; isCommit: import("@oclif/parser/lib/flags").IBooleanFlag<boolean>; lastDeployCommit: flags.IOptionFlag<string | undefined>; }; static args: { name: string; }[]; run(): Promise<void>; }