@flxbl-io/sfp
Version:
sfp is a CLI tool to help you manage your Salesforce projects in an artifact centric model
14 lines (13 loc) • 521 B
TypeScript
import { Org } from '@salesforce/core';
import { PoolBaseImpl } from './PoolBaseImpl';
import ScratchOrg from '../ScratchOrg';
import { Logger } from '@flxbl-io/sfp-logger';
export default class PoolDeleteImpl extends PoolBaseImpl {
private logger;
private tag;
private mypool;
private allScratchOrgs;
private inprogressonly;
constructor(hubOrg: Org, tag: string, mypool: boolean, allScratchOrgs: boolean, inprogressonly: boolean, logger: Logger);
protected onExec(): Promise<ScratchOrg[]>;
}