salesforce-alm
Version:
This package contains tools, and APIs, for an improved salesforce.com developer experience.
16 lines (15 loc) • 613 B
TypeScript
import { FlagsConfig, SfdxCommand } from '@salesforce/command';
import { AnyJson } from '@salesforce/ts-types';
export declare class OrgCloneCommand extends SfdxCommand {
static readonly longDescription: string;
static readonly help: string;
static readonly description: string;
static readonly showProgress = true;
static readonly requiresProject = false;
static readonly varargs = true;
static readonly orgType: string;
static readonly requiresUsername = true;
static readonly flagsConfig: FlagsConfig;
readJsonDefFile(): Promise<AnyJson>;
run(): Promise<unknown>;
}