Files

7 lines
287 B
TypeScript
Raw Permalink Normal View History

2026-03-22 20:00:13 +00:00
import type { SSRElement } from '../@types/astro.js';
import type { ModuleLoader } from '../core/module-loader/index.js';
export declare function getScriptsForURL(filePath: URL, root: URL, loader: ModuleLoader): Promise<{
scripts: Set<SSRElement>;
crawledFiles: Set<string>;
}>;