Files
Fluxup_PAP/node_modules/@expo/router-server/build/static/renderStaticContent.d.ts
2026-03-10 16:18:05 +00:00

23 lines
790 B
TypeScript

/**
* Copyright © 2023 650 Industries.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/
import '@expo/metro-runtime';
export type GetStaticContentOptions = {
loader?: {
data?: any;
/** Unique key for the route. Derived from the route's contextKey */
key: string;
};
request?: Request;
/** Asset manifest for hydration bundles (JS/CSS). Used in SSR. */
assets?: {
css: string[];
js: string[];
};
};
export declare function getStaticContent(location: URL, options?: GetStaticContentOptions): Promise<string>;
export { getBuildTimeServerManifestAsync, getManifest } from './getServerManifest';
//# sourceMappingURL=renderStaticContent.d.ts.map