8 lines
292 B
TypeScript
Raw Normal View History

2026-05-31 13:21:13 +02:00
import { PartialExtendedIconifyIcon } from "./defaults.js";
/**
* Merge icon and alias
*
* Can also be used to merge default values and icon
*/
declare function mergeIconData<T extends PartialExtendedIconifyIcon>(parent: T, child: PartialExtendedIconifyIcon): T;
export { mergeIconData };