/** * Defines the necessary information to serialize a solution xml to disk */ import type IFile from './IFile'; import type IFeatureXml from './IFeatureXml'; import type IIcon from './IIcon'; import type IOpenDocumentConventionXml from './IOpenDocumentConventionXml'; interface IPackageXml { manifest: IOpenDocumentConventionXml; features: IFeatureXml[]; relationships: IFile; contentTypesXml: IFile; customFiles?: IFile[]; icon?: IIcon; } export default IPackageXml; //# sourceMappingURL=IPackageXml.d.ts.map