mirror of
https://github.com/Sevichecc/Urara-Blog.git
synced 2025-05-20 18:49:13 +08:00
11 lines
386 B
Text
11 lines
386 B
Text
import { IconifyJSON } from '@iconify/types';
|
|
|
|
/**
|
|
* Validate icon set, return it as IconifyJSON on success, null on failure
|
|
*
|
|
* Unlike validateIconSet(), this function is very basic.
|
|
* It does not throw exceptions, it does not check metadata, it does not fix stuff.
|
|
*/
|
|
declare function quicklyValidateIconSet(obj: unknown): IconifyJSON | null;
|
|
|
|
export { quicklyValidateIconSet };
|