UNPKG

qforce

Version:

Commands to help with salesforce development.

14 lines (13 loc) 522 B
import { Command, flags } from '@oclif/command'; export default class DxDescribe extends Command { static description: string; static aliases: string[]; static flags: { help: import("@oclif/parser/lib/flags").IBooleanFlag<void>; username: flags.IOptionFlag<string | undefined>; sobject: flags.IOptionFlag<string | undefined>; result: flags.IOptionFlag<string | undefined>; all: import("@oclif/parser/lib/flags").IBooleanFlag<boolean>; }; run(): Promise<void>; }