/** * Defines the necessary information to generate a feature xml */ import type IComponent from './IComponent'; import type { ISharepointAssets } from '../packageXml/ISharepointAssets'; /** * @public */ interface IFeature { title: string; description: string; id: string; version?: string; componentIds?: string[]; components?: IComponent[]; assets?: ISharepointAssets; } export default IFeature; //# sourceMappingURL=IFeature.d.ts.map