UNPKG

@flxbl-io/sfp

Version:

sfp is a CLI tool to help you manage your Salesforce projects in an artifact centric model

10 lines (9 loc) 346 B
import { Org } from '@salesforce/core'; import { PoolBaseImpl } from './PoolBaseImpl'; import ScratchOrg from '../ScratchOrg'; export default class PoolListImpl extends PoolBaseImpl { private tag; private allScratchOrgs; constructor(hubOrg: Org, tag: string, allScratchOrgs: boolean); protected onExec(): Promise<ScratchOrg[]>; }