You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
912 B
29 lines
912 B
import type { CacheNodeSeedData } from './types';
|
|
import React, { type ReactNode } from 'react';
|
|
import type { LoaderTree } from '../lib/app-dir-module';
|
|
import type { CreateSegmentPath, AppRenderContext } from './app-render';
|
|
type ComponentTree = {
|
|
seedData: CacheNodeSeedData;
|
|
styles: ReactNode;
|
|
};
|
|
type Params = {
|
|
[key: string]: string | string[];
|
|
};
|
|
/**
|
|
* Use the provided loader tree to create the React Component tree.
|
|
*/
|
|
export declare function createComponentTree(props: {
|
|
createSegmentPath: CreateSegmentPath;
|
|
loaderTree: LoaderTree;
|
|
parentParams: Params;
|
|
rootLayoutIncluded: boolean;
|
|
firstItem?: boolean;
|
|
injectedCSS: Set<string>;
|
|
injectedJS: Set<string>;
|
|
injectedFontPreloadTags: Set<string>;
|
|
asNotFound?: boolean;
|
|
metadataOutlet?: React.ReactNode;
|
|
ctx: AppRenderContext;
|
|
missingSlots?: Set<string>;
|
|
}): Promise<ComponentTree>;
|
|
export {};
|
|
|