This repository has been archived on 2026-05-03. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
novarix-networks-homepage/node_modules/next/dist/server/lib/app-info-log.d.ts
T
Kismet Hasanaj 34dc9aec52 .
2026-05-02 20:07:02 +02:00

25 lines
886 B
TypeScript

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