10 lines
		
	
	
		
			359 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
		
			359 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
| 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 { ParentIconsList, ParentIconsTree, getIconsTree }; | 
