UNPKG

salesforce-alm

Version:

This package contains tools, and APIs, for an improved salesforce.com developer experience.

16 lines (15 loc) 629 B
import { FlagsConfig, SfdxCommand } from '@salesforce/command'; import { AnyJson } from '@salesforce/ts-types'; export declare class OrgCreateCommand extends SfdxCommand { static readonly help: string; static readonly description: string; static readonly showProgress = true; static readonly supportsDevhubUsername = true; static readonly supportsUsername = true; static readonly varargs = true; static readonly orgType: string; static readonly flagsConfig: FlagsConfig; protected readonly lifecycleEventNames: string[]; readJsonDefFile(): Promise<AnyJson>; run(): Promise<unknown>; }