mirror of
https://github.com/Sevichecc/Urara-Blog.git
synced 2025-05-02 17:19:31 +08:00
8 lines
433 B
Text
8 lines
433 B
Text
import { Awaitable } from '@antfu/utils';
|
|
import { IconifyLoaderOptions } from './types.js';
|
|
import '../customisations/index.js';
|
|
import '@iconify/types';
|
|
|
|
declare function mergeIconProps(svg: string, collection: string, icon: string, options?: IconifyLoaderOptions, propsProvider?: () => Awaitable<Record<string, string>>, afterCustomizations?: (props: Record<string, string>) => void): Promise<string>;
|
|
|
|
export { mergeIconProps };
|