astro-ghostcms/.pnpm-store/v3/files/b2/9c2044605dc5032836439f03e06...

11 lines
552 B
Plaintext

import type { Plugin } from 'vite';
import type { AstroSettings } from '../@types/astro.js';
import { type BuildInternals } from '../core/build/internal.js';
import type { AstroBuildPlugin } from '../core/build/plugin.js';
import type { StaticBuildOptions } from '../core/build/types.js';
export declare function astroContentAssetPropagationPlugin({ mode, settings, }: {
mode: string;
settings: AstroSettings;
}): Plugin;
export declare function astroConfigBuildPlugin(options: StaticBuildOptions, internals: BuildInternals): AstroBuildPlugin;