heartbeat-monitor/node_modules/next/dist/server/app-render/walk-tree-with-flight-router-state.d.ts
Matt Bruce bed1169443 Initial commit: Heartbeat Monitor dashboard
- Full-featured monitoring dashboard for local web apps
- Real-time status tracking with uptime percentages
- Visual sparklines for status history
- Add/Edit/Delete apps dynamically
- Categories and color coding
- Auto-refresh every 30 seconds
- API endpoints for apps and status management
2026-02-18 11:16:01 -06:00

26 lines
1.2 KiB
TypeScript

import type { FlightDataPath, FlightRouterState, PreloadCallbacks } from './types';
import type { LoaderTree } from '../lib/app-dir-module';
import type { CreateSegmentPath, AppRenderContext } from './app-render';
/**
* Use router state to decide at what common layout to render the page.
* This can either be the common layout between two pages or a specific place to start rendering from using the "refetch" marker in the tree.
*/
export declare function walkTreeWithFlightRouterState({ createSegmentPath, loaderTreeToFilter, parentParams, isFirst, flightRouterState, parentRendered, rscPayloadHead, injectedCSS, injectedJS, injectedFontPreloadTags, rootLayoutIncluded, getMetadataReady, ctx, preloadCallbacks, }: {
createSegmentPath: CreateSegmentPath;
loaderTreeToFilter: LoaderTree;
parentParams: {
[key: string]: string | string[];
};
isFirst: boolean;
flightRouterState?: FlightRouterState;
parentRendered?: boolean;
rscPayloadHead: React.ReactNode;
injectedCSS: Set<string>;
injectedJS: Set<string>;
injectedFontPreloadTags: Set<string>;
rootLayoutIncluded: boolean;
getMetadataReady: () => Promise<void>;
ctx: AppRenderContext;
preloadCallbacks: PreloadCallbacks;
}): Promise<FlightDataPath[]>;