2
0
mirror of https://github.com/iconify/iconify.git synced 2024-07-27 00:00:23 +00:00

chore: add .gitattributes, fix docblock

This commit is contained in:
Vjacheslav Trushkin 2024-01-14 21:05:54 +02:00
parent b778928bac
commit 08669af71f
2 changed files with 3 additions and 2 deletions

1
.gitattributes vendored Normal file
View File

@ -0,0 +1 @@
* text=auto eol=lf

View File

@ -1,9 +1,9 @@
import type { IconifyAliases, IconifyJSON } from '@iconify/types';
// Parent icons, first is direct parent, last is icon. Does not include self
// Parent icons, first is direct parent, then parent of parent and so on. Does not include self
export type ParentIconsList = string[];
// Result
// Result. Key is icon, value is list of parent icons
export type ParentIconsTree = Record<string, ParentIconsList | null>;
/**