Recipe-app main

This commit is contained in:
2026-04-09 09:14:39 +02:00
commit 962f4e4be5
10015 changed files with 2445177 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[];