jccp_a/vuepress/node_modules/@iconify/utils/lib/loader/utils.d.ts
hellcat ac91e1fbe4 1
2025-11-12 17:57:30 +08:00

5 lines
453 B
TypeScript

import { IconifyLoaderOptions } from "./types.js";
import { Awaitable } from "@antfu/utils";
declare function mergeIconProps(svg: string, collection: string, icon: string, options?: IconifyLoaderOptions, propsProvider?: () => Awaitable<Record<string, string>>, afterCustomizations?: (props: Record<string, string>) => void): Promise<string>;
declare function getPossibleIconNames(icon: string): string[];
export { getPossibleIconNames, mergeIconProps };