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) 253 B
import Component from './Component'; /** * Used by sfdc-soup API calls */ export default interface Entrypoint { name: string; type: string; id: string; } export declare function component2entrypoint(components: Component[]): Entrypoint[];