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) 375 B
import { Logger } from '@flxbl-io/sfp-logger'; import SfpPackage from '../SfpPackage'; export default interface PropertyFetcher { /** * Retrieves property from packageDescriptor and adds its to SfpPackage by reference * @param packageContents * @param packageLogger */ getsfpProperties(packageContents: SfpPackage, packageLogger?: Logger): any; }