utquidem
Version:
The meta-framework suite designed from scratch for frontend-focused modern web development.
18 lines (12 loc) • 420 B
TypeScript
declare module '@loadable/server' {
export class ChunkExtractor {
chunks: any;
getScriptTags: () => string;
collectChunks: (
jsx: React.ReactElement<any, string | React.JSXElementConstructor<any>>,
) => ReactElement<any, string | JSXElementConstructor<any>>;
getChunkAssets: (chunks: any) => any;
constructor({ statsFile, entrypoints });
}
}
declare module '@modern-js/runtime' {}