Project Init

This commit is contained in:
Muluhabt
2026-05-29 15:23:46 +03:00
commit 2fbc557aac
67387 changed files with 6063341 additions and 0 deletions

27
node_modules/@rspack/core/dist/MultiWatching.d.ts generated vendored Normal file
View File

@@ -0,0 +1,27 @@
/**
* The following code is modified based on
* https://github.com/webpack/webpack/blob/4b4ca3b/lib/MultiWatching.js
*
* MIT Licensed
* Author Tobias Koppers @sokra
* Copyright (c) JS Foundation and other contributors
* https://github.com/webpack/webpack/blob/main/LICENSE
*/
import type { Callback } from "@rspack/lite-tapable";
import type { MultiCompiler } from "./MultiCompiler";
import type { Watching } from "./Watching";
declare class MultiWatching {
watchings: Watching[];
compiler: MultiCompiler;
/**
* @param watchings - child compilers' watchers
* @param compiler - the compiler
*/
constructor(watchings: Watching[], compiler: MultiCompiler);
invalidate(callback?: Callback<Error, void>): void;
invalidateWithChangesAndRemovals(changedFiles?: Set<string>, removedFiles?: Set<string>, callback?: Callback<Error, void>): void;
close(callback: Callback<Error, void>): void;
suspend(): void;
resume(): void;
}
export default MultiWatching;