This commit is contained in:
2026-04-12 01:02:14 +08:00
parent 509487f155
commit 9b053e302b
14085 changed files with 2680009 additions and 12 deletions

View File

@@ -0,0 +1,16 @@
import { type ConfiguredExperimentalFeature } from '../config';
export declare function logStartInfo({ networkUrl, appUrl, envInfo, experimentalFeatures, maxExperimentalFeatures, }: {
networkUrl: string | null;
appUrl: string | null;
envInfo?: string[];
experimentalFeatures?: ConfiguredExperimentalFeature[];
maxExperimentalFeatures?: number;
}): void;
export declare function getStartServerInfo({ dir, dev, debugPrerender, }: {
dir: string;
dev: boolean;
debugPrerender?: boolean;
}): Promise<{
envInfo?: string[];
experimentalFeatures?: ConfiguredExperimentalFeature[];
}>;