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.
10 lines
492 B
10 lines
492 B
|
2 months ago
|
import React from 'react';
|
||
|
|
import type { AppRenderContext } from './app-render';
|
||
|
|
export declare function getLayerAssets({ ctx, layoutOrPagePath, injectedCSS: injectedCSSWithCurrentLayout, injectedJS: injectedJSWithCurrentLayout, injectedFontPreloadTags: injectedFontPreloadTagsWithCurrentLayout, }: {
|
||
|
|
layoutOrPagePath: string | undefined;
|
||
|
|
injectedCSS: Set<string>;
|
||
|
|
injectedJS: Set<string>;
|
||
|
|
injectedFontPreloadTags: Set<string>;
|
||
|
|
ctx: AppRenderContext;
|
||
|
|
}): React.ReactNode;
|