/** * Creates XML definitions for the relationships files */ import type IFile from '../models/packageXml/IFile'; import type { XmlSerializationOptions } from '../../SolutionPackager'; export interface IRelationship { type?: string; target?: string; } export default function createRelationshipsXml(xmlSerializationOptions: XmlSerializationOptions, currentFilename: string, rels: IRelationship[]): IFile; //# sourceMappingURL=createRelationshipsXml.d.ts.map