@@ -4462,12 +4462,12 @@ declare class Hash {
44624462 constructor ( ) ;
44634463
44644464 /**
4465- * Update hash {@link https://nodejs.org/api/crypto.html#crypto_hash_update_data_inputencoding}
4465+ * Update hash {@link https ://nodejs.org/api/crypto.html#crypto_hash_update_data_inputencoding}
44664466 */
44674467 update ( data : string | Buffer , inputEncoding ?: string ) : Hash ;
44684468
44694469 /**
4470- * Calculates the digest {@link https://nodejs.org/api/crypto.html#crypto_hash_digest_encoding}
4470+ * Calculates the digest {@link https ://nodejs.org/api/crypto.html#crypto_hash_digest_encoding}
44714471 */
44724472 digest ( encoding ?: string ) : string | Buffer ;
44734473}
@@ -5355,7 +5355,7 @@ declare class JavascriptParser extends Parser {
53555355 setVariable ( name : string , variableInfo : ExportedVariableInfo ) : void ;
53565356 parseCommentOptions (
53575357 range ?: any
5358- ) : { options : null ; errors : null } | { options : object ; errors : any [ ] } ;
5358+ ) : { options : null ; errors : null } | { options : object ; errors : unknown [ ] } ;
53595359 extractMemberExpressionChain ( expression : MemberExpression ) : {
53605360 members : string [ ] ;
53615361 object :
@@ -6034,9 +6034,8 @@ declare class LazySet<T> {
60346034 has ( item : T ) : boolean ;
60356035 keys ( ) : IterableIterator < T > ;
60366036 values ( ) : IterableIterator < T > ;
6037- [ Symbol . iterator ] ( ) : IterableIterator < T > ;
6038- readonly [ Symbol . toStringTag ] : string ;
60396037 serialize ( __0 : { write : any } ) : void ;
6038+ [ Symbol . iterator ] ( ) : IterableIterator < T > ;
60406039 static deserialize ( __0 : { read : any } ) : LazySet < any > ;
60416040}
60426041declare interface LibIdentOptions {
@@ -7709,8 +7708,8 @@ type NormalizedStatsOptions = KnownNormalizedStatsOptions &
77097708 Omit <
77107709 StatsOptions ,
77117710 | "context"
7712- | "requestShortener"
77137711 | "chunkGroups"
7712+ | "requestShortener"
77147713 | "chunksSort"
77157714 | "modulesSort"
77167715 | "chunkModulesSort"
@@ -8987,7 +8986,7 @@ declare class ProgressPlugin {
89878986 showModules ?: boolean ;
89888987 showDependencies ?: boolean ;
89898988 showActiveModules ?: boolean ;
8990- percentBy ?: null | "dependencies " | "modules " | "entries" ;
8989+ percentBy ?: null | "modules " | "dependencies " | "entries" ;
89918990 apply ( compiler : Compiler | MultiCompiler ) : void ;
89928991 static getReporter (
89938992 compiler : Compiler
@@ -9048,7 +9047,7 @@ declare interface ProgressPluginOptions {
90489047 /**
90499048 * Collect percent algorithm. By default it calculates by a median from modules, entries and dependencies percent.
90509049 */
9051- percentBy ?: null | "dependencies " | "modules " | "entries" ;
9050+ percentBy ?: null | "modules " | "dependencies " | "entries" ;
90529051
90539052 /**
90549053 * Collect profile data for progress steps. Default: false.
@@ -10173,8 +10172,8 @@ declare class RuntimeSpecSet {
1017310172 constructor ( iterable ?: any ) ;
1017410173 add ( runtime ?: any ) : void ;
1017510174 has ( runtime ?: any ) : boolean ;
10176- [ Symbol . iterator ] ( ) : IterableIterator < RuntimeSpec > ;
1017710175 readonly size : number ;
10176+ [ Symbol . iterator ] ( ) : IterableIterator < RuntimeSpec > ;
1017810177}
1017910178declare abstract class RuntimeTemplate {
1018010179 compilation : Compilation ;
@@ -10871,7 +10870,6 @@ declare abstract class SortableSet<T> extends Set<T> {
1087110870 * Iterates over values in the set.
1087210871 */
1087310872 [ Symbol . iterator ] ( ) : IterableIterator < T > ;
10874- readonly [ Symbol . toStringTag ] : string ;
1087510873}
1087610874declare class Source {
1087710875 constructor ( ) ;
0 commit comments