astro-ghostcms/.pnpm-store/v3/files/a0/70fa42765c848573244b5088603...

12 lines
378 B
Plaintext

import { Awaitable } from '@antfu/utils';
import { CustomIconLoader } from './types.js';
import '../customisations/defaults.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 };