@salesforce/plugin-org
Version:
Commands to interact with Salesforce orgs
16 lines (15 loc) • 846 B
TypeScript
import { SfCommand } from '@salesforce/sf-plugins-core';
import { ScratchCreateResponse } from '../../../shared/orgTypes.js';
export default class OrgResumeScratch extends SfCommand<ScratchCreateResponse> {
static readonly summary: string;
static readonly description: string;
static readonly examples: string[];
static readonly aliases: string[];
static readonly deprecateAliases = true;
static readonly flags: {
'job-id': import("@oclif/core/interfaces").OptionFlag<string | undefined, import("@oclif/core/interfaces").CustomOptions>;
'use-most-recent': import("@oclif/core/interfaces").BooleanFlag<boolean>;
wait: import("@oclif/core/interfaces").OptionFlag<import("@salesforce/kit").Duration, import("@oclif/core/interfaces").CustomOptions>;
};
run(): Promise<ScratchCreateResponse>;
}