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) 240 B
import { Connection } from '@salesforce/core'; export default class OrganizationFetcher { private conn; constructor(conn: Connection); fetch(): Promise<{ OrganizationType: string; IsSandbox: boolean; }[]>; }