UNPKG

@salesforce/plugin-org

Version:

Commands to interact with Salesforce orgs

15 lines (14 loc) 653 B
import { SfCommand } from '@salesforce/sf-plugins-core'; export type OrgAuthShowAccessTokenResult = { accessToken: string; }; export default class OrgAuthShowAccessToken extends SfCommand<OrgAuthShowAccessTokenResult> { 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<OrgAuthShowAccessTokenResult>; }