UNPKG

182 BTypeScriptView Raw
1export interface Icon {
2 id: string;
3 name: string;
4 description: string;
5 keywords: string[];
6}
7
8declare const metadata: {
9 [iconId: string]: Icon;
10};
11
12export default metadata;
\No newline at end of file