UNPKG

astro

Version:

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

11 lines (10 loc) 337 B
import type { FontFileContentResolver } from '../definitions.js'; type ReadFileSync = (path: string) => string; export declare class FsFontFileContentResolver implements FontFileContentResolver { #private; constructor({ readFileSync }: { readFileSync: ReadFileSync; }); resolve(url: string): string; } export {};