UNPKG

@flxbl-io/sfp

Version:

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

11 lines (10 loc) 422 B
import { Connection } from '@salesforce/core'; /** * Functions to deal with externalDependencyMap supplied by the user * to aid in resolving transitive dependencies */ export default class UserDefinedExternalDependencyMap { fetchDependencyEntries(projectConfig: any): any; addDependencyEntries(projectConfig: any, connToDevHub: Connection): Promise<any>; cleanupEntries(projectConfig: any): Promise<any>; }