astro
Version:
Astro is a modern site builder with web best practices, performance, and DX front-of-mind.
11 lines (10 loc) • 357 B
TypeScript
import type { Plugin } from 'vite';
import type { AstroSettings } from '../types/astro.js';
import type { EnvLoader } from './env-loader.js';
interface AstroEnvPluginParams {
settings: AstroSettings;
sync: boolean;
envLoader: EnvLoader;
}
export declare function astroEnv({ settings, sync, envLoader }: AstroEnvPluginParams): Plugin;
export {};