UNPKG

astro

Version:

Astro is a modern site builder with web best practices, performance, and DX front-of-mind.

14 lines (13 loc) 466 B
import type { AssetsPrefix } from '../../../types/public/index.js'; import type { UrlResolver } from '../definitions.js'; export declare class BuildUrlResolver implements UrlResolver { #private; constructor({ base, assetsPrefix, searchParams, }: { base: string; assetsPrefix: AssetsPrefix; searchParams: URLSearchParams; }); resolve(id: string): string; get cspResources(): Array<string>; get urls(): Array<string>; }