UNPKG

astro

Version:

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

13 lines (12 loc) 444 B
import type * as unifont from 'unifont'; import type { FontTypeExtractor, UrlProxy } from '../definitions.js'; import type { ResolvedLocalFontFamily } from '../types.js'; interface Options { family: ResolvedLocalFontFamily; urlProxy: UrlProxy; fontTypeExtractor: FontTypeExtractor; } export declare function resolveLocalFont({ family, urlProxy, fontTypeExtractor }: Options): { fonts: Array<unifont.FontFaceData>; }; export {};