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.
12 lines
362 B
12 lines
362 B
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 };
|
|
|