UNPKG

ci-sf-plugin

Version:

Set of commands making CI and dev's life easier.

12 lines (11 loc) 473 B
import { SfCommand } from '@salesforce/sf-plugins-core'; import { AnyJson } from '@salesforce/ts-types'; export default class Display extends SfCommand<any> { static description: string; static examples: string[]; static readonly flags: { 'target-org': import("@oclif/core/interfaces").OptionFlag<import("@salesforce/core").Org, import("@oclif/core/interfaces").CustomOptions>; }; static requiresProject: boolean; run(): Promise<AnyJson>; }