UNPKG

@salesforce/plugin-org

Version:

Commands to interact with Salesforce orgs

15 lines (14 loc) 654 B
import { SfCommand } from '@salesforce/sf-plugins-core'; export type OrgAuthShowUserPasswordResult = { password: string; }; export default class OrgAuthShowUserPassword extends SfCommand<OrgAuthShowUserPasswordResult> { static readonly summary: string; static readonly description: string; static readonly examples: string[]; static readonly flags: { 'target-org': import("@oclif/core/interfaces").OptionFlag<import("@salesforce/core").Org, import("@oclif/core/interfaces").CustomOptions>; 'no-prompt': import("@oclif/core/interfaces").BooleanFlag<boolean>; }; run(): Promise<OrgAuthShowUserPasswordResult>; }