8 lines
292 B
TypeScript
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 }; |