mirror of
https://github.com/Tria-plc/emaui.git
synced 2026-08-27 12:01:00 +00:00
10 lines
426 B
TypeScript
10 lines
426 B
TypeScript
import type { RuntimeSpec } from "./util/runtime";
|
|
declare module "@rspack/binding" {
|
|
interface ChunkGraph {
|
|
getModuleChunksIterable(module: Module): Iterable<Chunk>;
|
|
getOrderedChunkModulesIterable(chunk: Chunk, compareFn: (a: Module, b: Module) => number): Iterable<Module>;
|
|
getModuleHash(module: Module, runtime: RuntimeSpec): string | null;
|
|
}
|
|
}
|
|
export { ChunkGraph } from "@rspack/binding";
|