mirror of
https://github.com/Sevichecc/Urara-Blog.git
synced 2025-05-04 18:59:30 +08:00
18 lines
537 B
Text
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 };
|