Files
dd0c-site/node_modules/astro/dist/vite-plugin-astro-server/css.d.ts

14 lines
420 B
TypeScript
Raw Normal View History

2026-03-22 20:00:13 +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 {};