/** * Defines the necessary information to serialize a an icon file and xmls to disk */ import type IFile from './IFile'; interface IIcon { path: string; config: IFile; relationships: IFile; } export default IIcon; //# sourceMappingURL=IIcon.d.ts.map