You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
362 B
13 lines
362 B
|
2 years ago
|
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 };
|