@flxbl-io/sfp
Version:
sfp is a CLI tool to help you manage your Salesforce projects in an artifact centric model
12 lines (11 loc) • 339 B
TypeScript
import { Org } from '@salesforce/core';
export default class ScratchOrgInfoFetcher {
private hubOrg;
constructor(hubOrg: Org);
getScratchOrgInfoByOrgId(orgId: string[]): Promise<ScratchOrgInfo[]>;
}
export interface ScratchOrgInfo {
Id: string;
ScratchOrg: string;
Status: 'New' | 'Deleted' | 'Active' | 'Error';
}