astro
Version:
Astro is a modern site builder with web best practices, performance, and DX front-of-mind.
10 lines (9 loc) • 323 B
TypeScript
import type { Plugin } from 'vite';
import type { Logger } from '../core/logger/core.js';
import type { AstroSettings } from '../types/astro.js';
interface AstroPluginOptions {
settings: AstroSettings;
logger: Logger;
}
export default function markdown({ settings, logger }: AstroPluginOptions): Plugin;
export {};