Urara-Blog/node_modules/.pnpm-store/v3/files/e1/819ac75e55d1d6cd7c53de5e9d0917aa689b6a8f1a14b1a54080985919287457979a8bc2cb034f14c13723163ca05824ea5292e0f6f1eb3a3ac0ef40387dea
2022-08-14 01:14:53 +08:00

18 lines
537 B
Text

import { IconifyIcon, IconifyOptional } from '@iconify/types';
export { IconifyIcon } from '@iconify/types';
declare type FullIconifyIcon = Required<IconifyIcon>;
/**
* Expression to test part of icon name.
*/
declare const matchName: RegExp;
/**
* Default values for all optional IconifyIcon properties
*/
declare const iconDefaults: Required<IconifyOptional>;
/**
* Add optional properties to icon
*/
declare function fullIcon(data: IconifyIcon): FullIconifyIcon;
export { FullIconifyIcon, fullIcon, iconDefaults, matchName };