mirror of
https://github.com/Tria-plc/emaui.git
synced 2026-08-27 14:21:00 +00:00
13 lines
452 B
TypeScript
13 lines
452 B
TypeScript
import { Chunks } from "@rspack/binding";
|
|
declare module "@rspack/binding" {
|
|
interface Chunks {
|
|
[Symbol.iterator](): SetIterator<Chunk>;
|
|
entries(): SetIterator<[Chunk, Chunk]>;
|
|
values(): SetIterator<Chunk>;
|
|
keys(): SetIterator<Chunk>;
|
|
forEach(callbackfn: (value: Chunk, value2: Chunk, set: ReadonlySet<Chunk>) => void, thisArg?: any): void;
|
|
has(value: Chunk): boolean;
|
|
}
|
|
}
|
|
export default Chunks;
|