astro
Version:
Astro is a modern site builder with web best practices, performance, and DX front-of-mind.
14 lines (13 loc) • 508 B
TypeScript
import type nodeFs from 'node:fs';
import type { AstroInlineConfig } from '../../types/public/config.js';
import type { Container } from './container.js';
interface CreateContainerWithAutomaticRestart {
inlineConfig?: AstroInlineConfig;
fs: typeof nodeFs;
}
interface Restart {
container: Container;
restarted: () => Promise<Error | null>;
}
export declare function createContainerWithAutomaticRestart({ inlineConfig, fs, }: CreateContainerWithAutomaticRestart): Promise<Restart>;
export {};