WXL
3 天以前 3bd962a6d7f61239c020e2dbbeb7341e5b842dd1
node_modules/webpack/lib/Stats.js
@@ -6,11 +6,13 @@
"use strict";
/** @typedef {import("../declarations/WebpackOptions").StatsOptions} StatsOptions */
/** @typedef {import("../declarations/WebpackOptions").StatsValue} StatsValue */
/** @typedef {import("./Compilation")} Compilation */
/** @typedef {import("./stats/DefaultStatsFactoryPlugin").StatsCompilation} StatsCompilation */
class Stats {
   /**
    * Creates an instance of Stats.
    * @param {Compilation} compilation webpack compilation
    */
   constructor(compilation) {
@@ -30,6 +32,7 @@
   }
   /**
    * Checks whether this stats has warnings.
    * @returns {boolean} true if the compilation had a warning
    */
   hasWarnings() {
@@ -40,6 +43,7 @@
   }
   /**
    * Checks whether this stats has errors.
    * @returns {boolean} true if the compilation encountered an error
    */
   hasErrors() {
@@ -50,7 +54,8 @@
   }
   /**
    * @param {(string | boolean | StatsOptions)=} options stats options
    * Returns json output.
    * @param {StatsValue=} options stats options
    * @returns {StatsCompilation} json output
    */
   toJson(options) {
@@ -66,7 +71,8 @@
   }
   /**
    * @param {(string | boolean | StatsOptions)=} options stats options
    * Returns a string representation.
    * @param {StatsValue=} options stats options
    * @returns {string} string output
    */
   toString(options) {