Urara-Blog/node_modules/.pnpm-store/v3/files/e3/e492d400dfd23a9c27fff80d48ddff8a3bc32651ad9f6d75ed5ac84193be19f435a9f6281d0ce066c2c9f7432514f0f3b068368719fe2bbfcea96df6b689eb
2022-08-14 01:14:53 +08:00

11 lines
375 B
Text

import { Awaitable } from '@antfu/utils';
import { CustomIconLoader } from './types.js';
import '../customisations/index.js';
import '@iconify/types';
/**
* Returns CustomIconLoader for loading icons from a directory
*/
declare function FileSystemIconLoader(dir: string, transform?: (svg: string) => Awaitable<string>): CustomIconLoader;
export { FileSystemIconLoader };