salesforce-alm
Version:
This package contains tools, and APIs, for an improved salesforce.com developer experience.
15 lines (14 loc) • 440 B
TypeScript
import { SfdxCommand } from '@salesforce/command';
export interface ShapeCreateResult {
shapeId: string;
shapeFile: string;
success: boolean;
errors: [];
}
export declare class OrgShapeCreateCommand extends SfdxCommand {
static readonly description: string;
static readonly examples: string[];
static readonly requiresUsername = true;
static readonly varargs = true;
run(): Promise<ShapeCreateResult>;
}