gatsby
Version:
Blazing fast modern site generator for React
10 lines (9 loc) • 307 B
TypeScript
import type webpack from "webpack";
import type { IGatsbyState } from "../../internal";
export declare function getSSRChunkHashes({ stats, components, }: {
stats: webpack.Stats;
components: IGatsbyState["components"];
}): {
templateHashes: Record<string, string>;
renderPageHash: string;
};