Version 1.0.2 mit node_modules Verzeichnis

This commit is contained in:
ISA
2024-10-02 07:58:24 +02:00
parent f353a06b1b
commit 62b6e55a0a
68228 changed files with 4548477 additions and 651 deletions

View File

@@ -0,0 +1,26 @@
import type { FlightDataPath, FlightRouterState } from './types';
import React from 'react';
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, asNotFound, metadataOutlet, ctx, }: {
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;
asNotFound?: boolean;
metadataOutlet: React.ReactNode;
ctx: AppRenderContext;
}): Promise<FlightDataPath[]>;