UNPKG

@salesforce/plugin-org

Version:

Commands to interact with Salesforce orgs

18 lines (17 loc) 508 B
import { SandboxProcessObject } from '@salesforce/core'; import { StageStatus } from 'node_modules/@oclif/multi-stage-output/lib/stage-tracker.js'; type Options = { title: string; jsonEnabled: boolean; refresh: boolean; }; export declare class SandboxStages { private mso; private refresh; constructor({ title, jsonEnabled, refresh }: Options); start(): void; auth(): void; update(data: SandboxProcessObject): void; stop(finalStatus?: StageStatus): void; } export {};