securityos/node_modules/next/dist/server/app-render/get-layer-assets.d.ts

9 lines
422 B
TypeScript
Raw Permalink Normal View History

2024-09-06 15:32:35 +00:00
import React from 'react';
import type { AppRenderContext } from './app-render';
export declare function getLayerAssets({ ctx, layoutOrPagePath, injectedCSS: injectedCSSWithCurrentLayout, injectedFontPreloadTags: injectedFontPreloadTagsWithCurrentLayout, }: {
layoutOrPagePath: string | undefined;
injectedCSS: Set<string>;
injectedFontPreloadTags: Set<string>;
ctx: AppRenderContext;
}): React.ReactNode;