astro-ghostcms/.pnpm-store/v3/files/a6/69e10a5252dfe8719842e2fc74d...

12 lines
386 B
Plaintext

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 };