astro-ghostcms/.pnpm-store/v3/files/00/ca95dd69c01519c7661be7ad969...

8 lines
247 B
Plaintext
Raw Normal View History

2024-02-14 14:10:47 +00:00
import type * as vite from 'vite';
import type { AstroSettings } from '../@types/astro.js';
interface EnvPluginOptions {
settings: AstroSettings;
}
export default function envVitePlugin({ settings }: EnvPluginOptions): vite.Plugin;
export {};