astro-ghostcms/.pnpm-store/v3/files/81/37d87f91aa55308a930c72a7e4f...

4 lines
325 B
Plaintext
Raw Normal View History

2024-02-14 14:10:47 +00:00
import type { ModuleLoader, ModuleNode } from '../core/module-loader/index.js';
/** recursively crawl the module graph to get all style files imported by parent id */
export declare function crawlGraph(loader: ModuleLoader, _id: string, isRootFile: boolean, scanned?: Set<string>): AsyncGenerator<ModuleNode, void, unknown>;