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

17
node_modules/@rspack/core/dist/Stats.d.ts generated vendored Normal file
View File

@@ -0,0 +1,17 @@
import type { Compilation } from "./Compilation";
import type { StatsOptions, StatsValue } from "./config";
import type { StatsCompilation } from "./stats/statsFactoryUtils";
export type { StatsAsset, StatsChunk, StatsCompilation, StatsError, StatsModule } from "./stats/statsFactoryUtils";
export declare class Stats {
#private;
constructor(compilation: Compilation);
get compilation(): Compilation;
get hash(): Readonly<string | null>;
get startTime(): number | undefined;
get endTime(): number | undefined;
hasErrors(): boolean;
hasWarnings(): boolean;
toJson(opts?: StatsValue, forToString?: boolean): StatsCompilation;
toString(opts?: StatsValue): string;
}
export declare function normalizeStatsPreset(options?: StatsValue): StatsOptions;