astro-ghostcms/.pnpm-store/v3/files/86/cc0388b1c52328edbe713dab7d9...

14 lines
420 B
Plaintext
Raw Permalink Normal View History

2024-02-14 14:10:47 +00:00
import type { ModuleLoader } from '../core/module-loader/index.js';
interface ImportedStyle {
id: string;
url: string;
content: string;
}
/** Given a filePath URL, crawl Vites module graph to find all style imports. */
export declare function getStylesForURL(filePath: URL, loader: ModuleLoader): Promise<{
urls: Set<string>;
styles: ImportedStyle[];
crawledFiles: Set<string>;
}>;
export {};