| 123456789101112 |
- import { IconifyJSON } from '@iconify/types';
- type ParentIconsList = string[];
- type ParentIconsTree = Record<string, ParentIconsList | null>;
- /**
- * Resolve icon set icons
- *
- * Returns parent icon for each icon
- */
- declare function getIconsTree(data: IconifyJSON, names?: string[]): ParentIconsTree;
- export { type ParentIconsList, type ParentIconsTree, getIconsTree };
|