astro-ghostcms/.pnpm-store/v3/files/87/92f14ca657b625081a0eb341fb4...

15 lines
586 B
Plaintext

import { ExternalPkgName, AutoInstall, CustomIconLoader } from './types.js';
import '@antfu/utils';
import '../customisations/defaults.js';
import '@iconify/types';
/**
* Creates a CustomIconLoader collection from an external package collection.
*
* @param packageName The package name.
* @param autoInstall {AutoInstall} [autoInstall=false] - whether to automatically install
*/
declare function createExternalPackageIconLoader(packageName: ExternalPkgName, autoInstall?: AutoInstall, cwd?: string): Record<string, CustomIconLoader>;
export { createExternalPackageIconLoader };