astro
Version:
Astro is a modern site builder with web best practices, performance, and DX front-of-mind.
12 lines (11 loc) • 381 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;
mode: string;
sync: boolean;
envLoader: EnvLoader;
}
export declare function astroEnv({ settings, mode, sync, envLoader }: AstroEnvPluginParams): Plugin;
export {};