mirror of
https://github.com/Sevichecc/Urara-Blog.git
synced 2025-05-02 19:49:29 +08:00
11 lines
375 B
Text
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 };
|