salesforce-alm
Version:
This package contains tools, and APIs, for an improved salesforce.com developer experience.
14 lines (13 loc) • 560 B
TypeScript
import { FlagsConfig } from '@salesforce/command';
import { ToolbeltCommand } from '../../../ToolbeltCommand';
export declare class SourcePullCommand extends ToolbeltCommand {
static readonly theDescription: string;
static readonly longDescription: string;
static readonly help: string;
static readonly showProgress = true;
static readonly requiresProject = true;
static readonly requiresUsername = true;
static readonly flagsConfig: FlagsConfig;
protected readonly lifecycleEventNames: string[];
run(): Promise<unknown>;
}