mirror of
https://github.com/Sevichecc/Urara-Blog.git
synced 2025-05-03 05:09:30 +08:00
11 lines
438 B
Text
11 lines
438 B
Text
import { CustomIconLoader, InlineCollection, IconifyLoaderOptions } from './types.js';
|
|
import '@antfu/utils';
|
|
import '../customisations/index.js';
|
|
import '@iconify/types';
|
|
|
|
/**
|
|
* Get custom icon from inline collection or using loader
|
|
*/
|
|
declare function getCustomIcon(custom: CustomIconLoader | InlineCollection, collection: string, icon: string, options?: IconifyLoaderOptions): Promise<string | undefined>;
|
|
|
|
export { getCustomIcon };
|