@flxbl-io/sfp
Version:
sfp is a CLI tool to help you manage your Salesforce projects in an artifact centric model
16 lines (15 loc) • 363 B
TypeScript
import { PackageType } from "../package/SfpPackage";
/**
* Component details and package it belongs to
*/
export default interface Component {
id: string;
fullName: string;
type: string;
files?: string[];
package?: string;
packageType?: PackageType;
indexOfPackage?: number;
namespace?: string;
dependencies?: Component[];
}