UNPKG

astro

Version:

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

11 lines (10 loc) 335 B
import type { Plugin } from 'vite'; import type { Logger } from '../../core/logger/core.js'; import type { AstroSettings } from '../../types/astro.js'; interface Options { settings: AstroSettings; sync: boolean; logger: Logger; } export declare function fontsPlugin({ settings, sync, logger }: Options): Plugin; export {};