UNPKG

@salesforce/plugin-org

Version:

Commands to interact with Salesforce orgs

15 lines (14 loc) 585 B
import { SfCommand } from '@salesforce/sf-plugins-core'; export type OrgDisableTrackingResult = { tracksSource: boolean; username: string; }; export default class OrgDisableTracking extends SfCommand<OrgDisableTrackingResult> { static readonly summary: string; static readonly description: string; static readonly examples: string[]; static readonly flags: { 'target-org': import("@oclif/core/interfaces").OptionFlag<import("@salesforce/core").Org, import("@oclif/core/interfaces").CustomOptions>; }; run(): Promise<OrgDisableTrackingResult>; }