Restore UI functionalities and clean up dependencies

This commit is contained in:
streaper2
2026-05-08 08:32:58 +02:00
parent 8946955f76
commit 0895b7d5bc
26751 changed files with 4207476 additions and 158 deletions

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[];