merge.d.ts 320 B

1234567891011
  1. import { PartialExtendedIconifyIcon } from './defaults.js';
  2. import '@iconify/types';
  3. /**
  4. * Merge icon and alias
  5. *
  6. * Can also be used to merge default values and icon
  7. */
  8. declare function mergeIconData<T extends PartialExtendedIconifyIcon>(parent: T, child: PartialExtendedIconifyIcon): T;
  9. export { mergeIconData };