2026-05-31 13:54:31 +02:00

8 lines
292 B
TypeScript

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 };