mirror of
https://github.com/Sevichecc/Urara-Blog.git
synced 2025-05-04 17:19:29 +08:00
12 lines
348 B
Text
12 lines
348 B
Text
import { IconifyJSON } from '@iconify/types';
|
|
|
|
/**
|
|
* Optional properties that must be copied when copying icon set
|
|
*/
|
|
declare const propsToCopy: (keyof IconifyJSON)[];
|
|
/**
|
|
* Extract icons from icon set
|
|
*/
|
|
declare function getIcons(data: IconifyJSON, icons: string[], not_found?: boolean): IconifyJSON | null;
|
|
|
|
export { getIcons, propsToCopy };
|