astro-ghostcms/.pnpm-store/v3/files/59/e35c3dace2a37813f91ddcb3dac...

9 lines
363 B
Plaintext

import type { Plugin as VitePlugin } from 'vite';
import type { AstroSettings } from '../@types/astro.js';
import { type Logger } from '../core/logger/core.js';
export interface AstroPluginScannerOptions {
settings: AstroSettings;
logger: Logger;
}
export default function astroScannerPlugin({ settings, logger, }: AstroPluginScannerOptions): VitePlugin;