9 lines
422 B
TypeScript
9 lines
422 B
TypeScript
|
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;
|