5 lines
453 B
TypeScript
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 }; |