IOweb/node_modules/astro-icon/dist/loaders/loadIconifyCollections.d.ts
2026-07-03 15:07:38 -05:00

9 lines
491 B
TypeScript

import type { AstroIconCollectionMap, IconCollection, IntegrationOptions } from "../../typings/integration";
import type { AutoInstall } from "../../typings/iconify";
interface LoadOptions {
root: URL;
include?: IntegrationOptions["include"];
}
export default function loadIconifyCollections({ root, include, }: LoadOptions): Promise<AstroIconCollectionMap>;
export declare function loadCollection(name: string, autoInstall?: AutoInstall): Promise<IconCollection | void>;
export {};