This commit is contained in:
Kismet Hasanaj
2026-05-02 20:07:02 +02:00
parent ce8672e283
commit 34dc9aec52
9428 changed files with 1733330 additions and 0 deletions
+24
View File
@@ -0,0 +1,24 @@
import type { ConfiguredExperimentalFeature } from '../config';
export type { ConfiguredExperimentalFeature };
/**
* Logs basic startup info that doesn't require config.
* Called before "Ready in X" to show immediate feedback.
*/
export declare function logStartInfo({ networkUrl, appUrl, envInfo, logBundler, }: {
networkUrl: string | null;
appUrl: string | null;
envInfo?: string[];
logBundler: boolean;
}): void;
/**
* Logs experimental features and config-dependent info.
* Called after getRequestHandlers completes.
*/
export declare function logExperimentalInfo({ experimentalFeatures, cacheComponents, }: {
experimentalFeatures?: ConfiguredExperimentalFeature[];
cacheComponents?: boolean;
}): void;
/**
* Gets environment info for logging. Fast operation that doesn't require config.
*/
export declare function getEnvInfo(dir: string): string[];