@kitschpatrol/eslint-config 7.5.3 → 7.6.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.ts CHANGED
@@ -552,10 +552,20 @@ interface RuleOptions {
552
552
  * Disallow dependencies in favor of more performant or secure alternatives
553
553
  */
554
554
  'e18e/ban-dependencies'?: Linter.RuleEntry<E18EBanDependencies>;
555
+ /**
556
+ * Disallow `delete` on properties — V8 deoptimizes the object to dictionary
557
+ * mode
558
+ */
559
+ 'e18e/no-delete-property'?: Linter.RuleEntry<[]>;
555
560
  /**
556
561
  * Prefer optimized alternatives to `indexOf()` equality checks
557
562
  */
558
563
  'e18e/no-indexof-equality'?: Linter.RuleEntry<[]>;
564
+ /**
565
+ * Disallow spreading the accumulator inside a `reduce` callback (O(N²)
566
+ * growth)
567
+ */
568
+ 'e18e/no-spread-in-reduce'?: Linter.RuleEntry<[]>;
559
569
  /**
560
570
  * Prefer Array.prototype.at() over length-based indexing
561
571
  */
@@ -570,7 +580,8 @@ interface RuleOptions {
570
580
  */
571
581
  'e18e/prefer-array-from-map'?: Linter.RuleEntry<[]>;
572
582
  /**
573
- * Prefer Array.some() over Array.find() when checking for element existence
583
+ * Prefer Array.some() over Array.find() and Array.filter().length checks when
584
+ * checking for element existence
574
585
  */
575
586
  'e18e/prefer-array-some'?: Linter.RuleEntry<[]>;
576
587
  /**
@@ -597,6 +608,11 @@ interface RuleOptions {
597
608
  * Prefer .includes() over indexOf() comparisons for arrays and strings
598
609
  */
599
610
  'e18e/prefer-includes'?: Linter.RuleEntry<[]>;
611
+ /**
612
+ * Prefer String.prototype.{includes,startsWith,endsWith} over equivalent
613
+ * regex.test() calls
614
+ */
615
+ 'e18e/prefer-includes-over-regex-test'?: Linter.RuleEntry<[]>;
600
616
  /**
601
617
  * Prefer inline equality checks over temporary object creation for simple
602
618
  * comparisons
@@ -621,11 +637,21 @@ interface RuleOptions {
621
637
  * ...), and Function.apply()
622
638
  */
623
639
  'e18e/prefer-spread-syntax'?: Linter.RuleEntry<[]>;
640
+ /**
641
+ * Prefer hoisting an `Intl.Collator` instance over calling localeCompare in a
642
+ * sort callback
643
+ */
644
+ 'e18e/prefer-static-collator'?: Linter.RuleEntry<[]>;
624
645
  /**
625
646
  * Prefer defining regular expressions at module scope to avoid re-compilation
626
647
  * on every function call
627
648
  */
628
649
  'e18e/prefer-static-regex'?: Linter.RuleEntry<[]>;
650
+ /**
651
+ * Prefer String.fromCharCode() over String.fromCodePoint() for code points
652
+ * below 0x10000
653
+ */
654
+ 'e18e/prefer-string-fromcharcode'?: Linter.RuleEntry<[]>;
629
655
  /**
630
656
  * Prefer passing function and arguments directly to setTimeout/setInterval
631
657
  * instead of wrapping in an arrow function or using bind
@@ -2011,44 +2037,44 @@ interface RuleOptions {
2011
2037
  /**
2012
2038
  * Enforce that names for bin properties are in kebab case.
2013
2039
  *
2014
- * @see https://github.com/michaelfaith/eslint-plugin-package-json/blob/HEAD/docs/rules/bin-name-casing.md
2040
+ * @see https://eslint-plugin-package-json.dev/rules/bin-name-casing
2015
2041
  */
2016
2042
  'json-package/bin-name-casing'?: Linter.RuleEntry<[]>;
2017
2043
  /**
2018
2044
  * Enforce consistent format for the exports field (implicit or explicit
2019
2045
  * subpaths).
2020
2046
  *
2021
- * @see https://github.com/michaelfaith/eslint-plugin-package-json/blob/HEAD/docs/rules/exports-subpaths-style.md
2047
+ * @see https://eslint-plugin-package-json.dev/rules/exports-subpaths-style
2022
2048
  */
2023
2049
  'json-package/exports-subpaths-style'?: Linter.RuleEntry<JsonPackageExportsSubpathsStyle>;
2024
2050
  /**
2025
2051
  * Reports on unnecessary empty arrays and objects.
2026
2052
  *
2027
- * @see https://github.com/michaelfaith/eslint-plugin-package-json/blob/HEAD/docs/rules/no-empty-fields.md
2053
+ * @see https://eslint-plugin-package-json.dev/rules/no-empty-fields
2028
2054
  */
2029
2055
  'json-package/no-empty-fields'?: Linter.RuleEntry<JsonPackageNoEmptyFields>;
2030
2056
  /**
2031
2057
  * Prevents adding unnecessary / redundant files.
2032
2058
  *
2033
- * @see https://github.com/michaelfaith/eslint-plugin-package-json/blob/HEAD/docs/rules/no-redundant-files.md
2059
+ * @see https://eslint-plugin-package-json.dev/rules/no-redundant-files
2034
2060
  */
2035
2061
  'json-package/no-redundant-files'?: Linter.RuleEntry<[]>;
2036
2062
  /**
2037
2063
  * Warns when publishConfig.access is used in unscoped packages.
2038
2064
  *
2039
- * @see https://github.com/michaelfaith/eslint-plugin-package-json/blob/HEAD/docs/rules/no-redundant-publishConfig.md
2065
+ * @see https://eslint-plugin-package-json.dev/rules/no-redundant-publishConfig
2040
2066
  */
2041
2067
  'json-package/no-redundant-publishConfig'?: Linter.RuleEntry<[]>;
2042
2068
  /**
2043
2069
  * Package properties should be declared in standard order
2044
2070
  *
2045
- * @see https://github.com/michaelfaith/eslint-plugin-package-json/blob/HEAD/docs/rules/order-properties.md
2071
+ * @see https://eslint-plugin-package-json.dev/rules/order-properties
2046
2072
  */
2047
2073
  'json-package/order-properties'?: Linter.RuleEntry<JsonPackageOrderProperties>;
2048
2074
  /**
2049
2075
  * Enforce either object or shorthand declaration for repository.
2050
2076
  *
2051
- * @see https://github.com/michaelfaith/eslint-plugin-package-json/blob/HEAD/docs/rules/repository-shorthand.md
2077
+ * @see https://eslint-plugin-package-json.dev/rules/repository-shorthand
2052
2078
  */
2053
2079
  'json-package/repository-shorthand'?: Linter.RuleEntry<JsonPackageRepositoryShorthand>;
2054
2080
  /**
@@ -2056,482 +2082,530 @@ interface RuleOptions {
2056
2082
  * or `contributors` is defined, and that if `contributors` is present, it
2057
2083
  * should include at least one contributor.
2058
2084
  *
2059
- * @see https://github.com/michaelfaith/eslint-plugin-package-json/blob/HEAD/docs/rules/require-attribution.md
2085
+ * @see https://eslint-plugin-package-json.dev/rules/require-attribution
2060
2086
  */
2061
2087
  'json-package/require-attribution'?: Linter.RuleEntry<JsonPackageRequireAttribution>;
2062
2088
  /**
2063
2089
  * Requires the `author` property to be present.
2064
2090
  *
2065
- * @see https://github.com/michaelfaith/eslint-plugin-package-json/blob/HEAD/docs/rules/require-author.md
2091
+ * @see https://eslint-plugin-package-json.dev/rules/require-properties/require-author
2066
2092
  */
2067
2093
  'json-package/require-author'?: Linter.RuleEntry<JsonPackageRequireAuthor>;
2068
2094
  /**
2069
2095
  * Requires the `bin` property to be present.
2070
2096
  *
2071
- * @see https://github.com/michaelfaith/eslint-plugin-package-json/blob/HEAD/docs/rules/require-bin.md
2097
+ * @see https://eslint-plugin-package-json.dev/rules/require-properties/require-bin
2072
2098
  */
2073
2099
  'json-package/require-bin'?: Linter.RuleEntry<JsonPackageRequireBin>;
2100
+ /**
2101
+ * Requires the `browser` property to be present.
2102
+ *
2103
+ * @see https://eslint-plugin-package-json.dev/rules/require-properties/require-browser
2104
+ */
2105
+ 'json-package/require-browser'?: Linter.RuleEntry<JsonPackageRequireBrowser>;
2074
2106
  /**
2075
2107
  * Requires the `bugs` property to be present.
2076
2108
  *
2077
- * @see https://github.com/michaelfaith/eslint-plugin-package-json/blob/HEAD/docs/rules/require-bugs.md
2109
+ * @see https://eslint-plugin-package-json.dev/rules/require-properties/require-bugs
2078
2110
  */
2079
2111
  'json-package/require-bugs'?: Linter.RuleEntry<JsonPackageRequireBugs>;
2080
2112
  /**
2081
2113
  * Requires the `bundleDependencies` property to be present.
2082
2114
  *
2083
- * @see https://github.com/michaelfaith/eslint-plugin-package-json/blob/HEAD/docs/rules/require-bundleDependencies.md
2115
+ * @see https://eslint-plugin-package-json.dev/rules/require-properties/require-bundleDependencies
2084
2116
  */
2085
2117
  'json-package/require-bundleDependencies'?: Linter.RuleEntry<JsonPackageRequireBundleDependencies>;
2118
+ /**
2119
+ * Requires the `config` property to be present.
2120
+ *
2121
+ * @see https://eslint-plugin-package-json.dev/rules/require-properties/require-config
2122
+ */
2123
+ 'json-package/require-config'?: Linter.RuleEntry<JsonPackageRequireConfig>;
2086
2124
  /**
2087
2125
  * Requires the `contributors` property to be present.
2088
2126
  *
2089
- * @see https://github.com/michaelfaith/eslint-plugin-package-json/blob/HEAD/docs/rules/require-contributors.md
2127
+ * @see https://eslint-plugin-package-json.dev/rules/require-properties/require-contributors
2090
2128
  */
2091
2129
  'json-package/require-contributors'?: Linter.RuleEntry<JsonPackageRequireContributors>;
2092
2130
  /**
2093
2131
  * Requires the `cpu` property to be present.
2094
2132
  *
2095
- * @see https://github.com/michaelfaith/eslint-plugin-package-json/blob/HEAD/docs/rules/require-cpu.md
2133
+ * @see https://eslint-plugin-package-json.dev/rules/require-properties/require-cpu
2096
2134
  */
2097
2135
  'json-package/require-cpu'?: Linter.RuleEntry<JsonPackageRequireCpu>;
2098
2136
  /**
2099
2137
  * Requires the `dependencies` property to be present.
2100
2138
  *
2101
- * @see https://github.com/michaelfaith/eslint-plugin-package-json/blob/HEAD/docs/rules/require-dependencies.md
2139
+ * @see https://eslint-plugin-package-json.dev/rules/require-properties/require-dependencies
2102
2140
  */
2103
2141
  'json-package/require-dependencies'?: Linter.RuleEntry<JsonPackageRequireDependencies>;
2104
2142
  /**
2105
2143
  * Requires the `description` property to be present.
2106
2144
  *
2107
- * @see https://github.com/michaelfaith/eslint-plugin-package-json/blob/HEAD/docs/rules/require-description.md
2145
+ * @see https://eslint-plugin-package-json.dev/rules/require-properties/require-description
2108
2146
  */
2109
2147
  'json-package/require-description'?: Linter.RuleEntry<JsonPackageRequireDescription>;
2110
2148
  /**
2111
2149
  * Requires the `devDependencies` property to be present.
2112
2150
  *
2113
- * @see https://github.com/michaelfaith/eslint-plugin-package-json/blob/HEAD/docs/rules/require-devDependencies.md
2151
+ * @see https://eslint-plugin-package-json.dev/rules/require-properties/require-devDependencies
2114
2152
  */
2115
2153
  'json-package/require-devDependencies'?: Linter.RuleEntry<JsonPackageRequireDevDependencies>;
2116
2154
  /**
2117
2155
  * Requires the `devEngines` property to be present.
2118
2156
  *
2119
- * @see https://github.com/michaelfaith/eslint-plugin-package-json/blob/HEAD/docs/rules/require-devEngines.md
2157
+ * @see https://eslint-plugin-package-json.dev/rules/require-properties/require-devEngines
2120
2158
  */
2121
2159
  'json-package/require-devEngines'?: Linter.RuleEntry<JsonPackageRequireDevEngines>;
2122
2160
  /**
2123
2161
  * Requires the `directories` property to be present.
2124
2162
  *
2125
- * @see https://github.com/michaelfaith/eslint-plugin-package-json/blob/HEAD/docs/rules/require-directories.md
2163
+ * @see https://eslint-plugin-package-json.dev/rules/require-properties/require-directories
2126
2164
  */
2127
2165
  'json-package/require-directories'?: Linter.RuleEntry<JsonPackageRequireDirectories>;
2128
2166
  /**
2129
2167
  * Requires the `engines` property to be present.
2130
2168
  *
2131
- * @see https://github.com/michaelfaith/eslint-plugin-package-json/blob/HEAD/docs/rules/require-engines.md
2169
+ * @see https://eslint-plugin-package-json.dev/rules/require-properties/require-engines
2132
2170
  */
2133
2171
  'json-package/require-engines'?: Linter.RuleEntry<JsonPackageRequireEngines>;
2134
2172
  /**
2135
2173
  * Requires the `exports` property to be present.
2136
2174
  *
2137
- * @see https://github.com/michaelfaith/eslint-plugin-package-json/blob/HEAD/docs/rules/require-exports.md
2175
+ * @see https://eslint-plugin-package-json.dev/rules/require-properties/require-exports
2138
2176
  */
2139
2177
  'json-package/require-exports'?: Linter.RuleEntry<JsonPackageRequireExports>;
2140
2178
  /**
2141
2179
  * Requires the `files` property to be present.
2142
2180
  *
2143
- * @see https://github.com/michaelfaith/eslint-plugin-package-json/blob/HEAD/docs/rules/require-files.md
2181
+ * @see https://eslint-plugin-package-json.dev/rules/require-properties/require-files
2144
2182
  */
2145
2183
  'json-package/require-files'?: Linter.RuleEntry<JsonPackageRequireFiles>;
2146
2184
  /**
2147
2185
  * Requires the `funding` property to be present.
2148
2186
  *
2149
- * @see https://github.com/michaelfaith/eslint-plugin-package-json/blob/HEAD/docs/rules/require-funding.md
2187
+ * @see https://eslint-plugin-package-json.dev/rules/require-properties/require-funding
2150
2188
  */
2151
2189
  'json-package/require-funding'?: Linter.RuleEntry<JsonPackageRequireFunding>;
2190
+ /**
2191
+ * Requires the `gypfile` property to be present.
2192
+ *
2193
+ * @see https://eslint-plugin-package-json.dev/rules/require-properties/require-gypfile
2194
+ */
2195
+ 'json-package/require-gypfile'?: Linter.RuleEntry<JsonPackageRequireGypfile>;
2152
2196
  /**
2153
2197
  * Requires the `homepage` property to be present.
2154
2198
  *
2155
- * @see https://github.com/michaelfaith/eslint-plugin-package-json/blob/HEAD/docs/rules/require-homepage.md
2199
+ * @see https://eslint-plugin-package-json.dev/rules/require-properties/require-homepage
2156
2200
  */
2157
2201
  'json-package/require-homepage'?: Linter.RuleEntry<JsonPackageRequireHomepage>;
2158
2202
  /**
2159
2203
  * Requires the `keywords` property to be present.
2160
2204
  *
2161
- * @see https://github.com/michaelfaith/eslint-plugin-package-json/blob/HEAD/docs/rules/require-keywords.md
2205
+ * @see https://eslint-plugin-package-json.dev/rules/require-properties/require-keywords
2162
2206
  */
2163
2207
  'json-package/require-keywords'?: Linter.RuleEntry<JsonPackageRequireKeywords>;
2208
+ /**
2209
+ * Requires the `libc` property to be present.
2210
+ *
2211
+ * @see https://eslint-plugin-package-json.dev/rules/require-properties/require-libc
2212
+ */
2213
+ 'json-package/require-libc'?: Linter.RuleEntry<JsonPackageRequireLibc>;
2164
2214
  /**
2165
2215
  * Requires the `license` property to be present.
2166
2216
  *
2167
- * @see https://github.com/michaelfaith/eslint-plugin-package-json/blob/HEAD/docs/rules/require-license.md
2217
+ * @see https://eslint-plugin-package-json.dev/rules/require-properties/require-license
2168
2218
  */
2169
2219
  'json-package/require-license'?: Linter.RuleEntry<JsonPackageRequireLicense>;
2170
2220
  /**
2171
2221
  * Requires the `main` property to be present.
2172
2222
  *
2173
- * @see https://github.com/michaelfaith/eslint-plugin-package-json/blob/HEAD/docs/rules/require-main.md
2223
+ * @see https://eslint-plugin-package-json.dev/rules/require-properties/require-main
2174
2224
  */
2175
2225
  'json-package/require-main'?: Linter.RuleEntry<JsonPackageRequireMain>;
2176
2226
  /**
2177
2227
  * Requires the `man` property to be present.
2178
2228
  *
2179
- * @see https://github.com/michaelfaith/eslint-plugin-package-json/blob/HEAD/docs/rules/require-man.md
2229
+ * @see https://eslint-plugin-package-json.dev/rules/require-properties/require-man
2180
2230
  */
2181
2231
  'json-package/require-man'?: Linter.RuleEntry<JsonPackageRequireMan>;
2182
2232
  /**
2183
2233
  * Requires the `module` property to be present.
2184
2234
  *
2185
- * @see https://github.com/michaelfaith/eslint-plugin-package-json/blob/HEAD/docs/rules/require-module.md
2235
+ * @see https://eslint-plugin-package-json.dev/rules/require-properties/require-module
2186
2236
  */
2187
2237
  'json-package/require-module'?: Linter.RuleEntry<JsonPackageRequireModule>;
2188
2238
  /**
2189
2239
  * Requires the `name` property to be present.
2190
2240
  *
2191
- * @see https://github.com/michaelfaith/eslint-plugin-package-json/blob/HEAD/docs/rules/require-name.md
2241
+ * @see https://eslint-plugin-package-json.dev/rules/require-properties/require-name
2192
2242
  */
2193
2243
  'json-package/require-name'?: Linter.RuleEntry<JsonPackageRequireName>;
2194
2244
  /**
2195
2245
  * Requires the `optionalDependencies` property to be present.
2196
2246
  *
2197
- * @see https://github.com/michaelfaith/eslint-plugin-package-json/blob/HEAD/docs/rules/require-optionalDependencies.md
2247
+ * @see https://eslint-plugin-package-json.dev/rules/require-properties/require-optionalDependencies
2198
2248
  */
2199
2249
  'json-package/require-optionalDependencies'?: Linter.RuleEntry<JsonPackageRequireOptionalDependencies>;
2200
2250
  /**
2201
2251
  * Requires the `os` property to be present.
2202
2252
  *
2203
- * @see https://github.com/michaelfaith/eslint-plugin-package-json/blob/HEAD/docs/rules/require-os.md
2253
+ * @see https://eslint-plugin-package-json.dev/rules/require-properties/require-os
2204
2254
  */
2205
2255
  'json-package/require-os'?: Linter.RuleEntry<JsonPackageRequireOs>;
2206
2256
  /**
2207
2257
  * Requires the `packageManager` property to be present.
2208
2258
  *
2209
- * @see https://github.com/michaelfaith/eslint-plugin-package-json/blob/HEAD/docs/rules/require-packageManager.md
2259
+ * @see https://eslint-plugin-package-json.dev/rules/require-properties/require-packageManager
2210
2260
  */
2211
2261
  'json-package/require-packageManager'?: Linter.RuleEntry<JsonPackageRequirePackageManager>;
2212
2262
  /**
2213
2263
  * Requires the `peerDependencies` property to be present.
2214
2264
  *
2215
- * @see https://github.com/michaelfaith/eslint-plugin-package-json/blob/HEAD/docs/rules/require-peerDependencies.md
2265
+ * @see https://eslint-plugin-package-json.dev/rules/require-properties/require-peerDependencies
2216
2266
  */
2217
2267
  'json-package/require-peerDependencies'?: Linter.RuleEntry<JsonPackageRequirePeerDependencies>;
2218
2268
  /**
2219
2269
  * Requires the `private` property to be present.
2220
2270
  *
2221
- * @see https://github.com/michaelfaith/eslint-plugin-package-json/blob/HEAD/docs/rules/require-private.md
2271
+ * @see https://eslint-plugin-package-json.dev/rules/require-properties/require-private
2222
2272
  */
2223
2273
  'json-package/require-private'?: Linter.RuleEntry<[]>;
2224
2274
  /**
2225
2275
  * Requires the `publishConfig` property to be present.
2226
2276
  *
2227
- * @see https://github.com/michaelfaith/eslint-plugin-package-json/blob/HEAD/docs/rules/require-publishConfig.md
2277
+ * @see https://eslint-plugin-package-json.dev/rules/require-properties/require-publishConfig
2228
2278
  */
2229
2279
  'json-package/require-publishConfig'?: Linter.RuleEntry<JsonPackageRequirePublishConfig>;
2230
2280
  /**
2231
2281
  * Requires the `repository` property to be present.
2232
2282
  *
2233
- * @see https://github.com/michaelfaith/eslint-plugin-package-json/blob/HEAD/docs/rules/require-repository.md
2283
+ * @see https://eslint-plugin-package-json.dev/rules/require-properties/require-repository
2234
2284
  */
2235
2285
  'json-package/require-repository'?: Linter.RuleEntry<JsonPackageRequireRepository>;
2236
2286
  /**
2237
2287
  * Requires the `scripts` property to be present.
2238
2288
  *
2239
- * @see https://github.com/michaelfaith/eslint-plugin-package-json/blob/HEAD/docs/rules/require-scripts.md
2289
+ * @see https://eslint-plugin-package-json.dev/rules/require-properties/require-scripts
2240
2290
  */
2241
2291
  'json-package/require-scripts'?: Linter.RuleEntry<JsonPackageRequireScripts>;
2242
2292
  /**
2243
2293
  * Requires the `sideEffects` property to be present.
2244
2294
  *
2245
- * @see https://github.com/michaelfaith/eslint-plugin-package-json/blob/HEAD/docs/rules/require-sideEffects.md
2295
+ * @see https://eslint-plugin-package-json.dev/rules/require-properties/require-sideEffects
2246
2296
  */
2247
2297
  'json-package/require-sideEffects'?: Linter.RuleEntry<JsonPackageRequireSideEffects>;
2248
2298
  /**
2249
2299
  * Requires the `type` property to be present.
2250
2300
  *
2251
- * @see https://github.com/michaelfaith/eslint-plugin-package-json/blob/HEAD/docs/rules/require-type.md
2301
+ * @see https://eslint-plugin-package-json.dev/rules/require-properties/require-type
2252
2302
  */
2253
2303
  'json-package/require-type'?: Linter.RuleEntry<JsonPackageRequireType>;
2254
2304
  /**
2255
2305
  * Requires the `types` property to be present.
2256
2306
  *
2257
- * @see https://github.com/michaelfaith/eslint-plugin-package-json/blob/HEAD/docs/rules/require-types.md
2307
+ * @see https://eslint-plugin-package-json.dev/rules/require-properties/require-types
2258
2308
  */
2259
2309
  'json-package/require-types'?: Linter.RuleEntry<JsonPackageRequireTypes>;
2260
2310
  /**
2261
2311
  * Requires the `version` property to be present.
2262
2312
  *
2263
- * @see https://github.com/michaelfaith/eslint-plugin-package-json/blob/HEAD/docs/rules/require-version.md
2313
+ * @see https://eslint-plugin-package-json.dev/rules/require-properties/require-version
2264
2314
  */
2265
2315
  'json-package/require-version'?: Linter.RuleEntry<JsonPackageRequireVersion>;
2266
2316
  /**
2267
2317
  * Restricts the range of dependencies to allow or disallow specific types of
2268
2318
  * ranges.
2269
2319
  *
2270
- * @see https://github.com/michaelfaith/eslint-plugin-package-json/blob/HEAD/docs/rules/restrict-dependency-ranges.md
2320
+ * @see https://eslint-plugin-package-json.dev/rules/restrict-dependency-ranges
2271
2321
  */
2272
2322
  'json-package/restrict-dependency-ranges'?: Linter.RuleEntry<JsonPackageRestrictDependencyRanges>;
2273
2323
  /**
2274
2324
  * Disallows unnecessary properties in private packages.
2275
2325
  *
2276
- * @see https://github.com/michaelfaith/eslint-plugin-package-json/blob/HEAD/docs/rules/restrict-private-properties.md
2326
+ * @see https://eslint-plugin-package-json.dev/rules/restrict-private-properties
2277
2327
  */
2278
2328
  'json-package/restrict-private-properties'?: Linter.RuleEntry<JsonPackageRestrictPrivateProperties>;
2279
2329
  /**
2280
2330
  * Disallows specified top-level properties in package.json.
2281
2331
  *
2282
- * @see https://github.com/michaelfaith/eslint-plugin-package-json/blob/HEAD/docs/rules/restrict-top-level-properties.md
2332
+ * @see https://eslint-plugin-package-json.dev/rules/restrict-top-level-properties
2283
2333
  */
2284
2334
  'json-package/restrict-top-level-properties'?: Linter.RuleEntry<JsonPackageRestrictTopLevelProperties>;
2285
2335
  /**
2286
2336
  * Enforce that names for `scripts` are in kebab case (optionally separated by
2287
2337
  * colons).
2288
2338
  *
2289
- * @see https://github.com/michaelfaith/eslint-plugin-package-json/blob/HEAD/docs/rules/scripts-name-casing.md
2339
+ * @see https://eslint-plugin-package-json.dev/rules/scripts-name-casing
2290
2340
  */
2291
2341
  'json-package/scripts-name-casing'?: Linter.RuleEntry<[]>;
2292
2342
  /**
2293
2343
  * Selected collections must be in a consistent order (lexicographical for
2294
2344
  * most; lifecycle-aware for scripts).
2295
2345
  *
2296
- * @see https://github.com/michaelfaith/eslint-plugin-package-json/blob/HEAD/docs/rules/sort-collections.md
2346
+ * @see https://eslint-plugin-package-json.dev/rules/sort-collections
2297
2347
  */
2298
2348
  'json-package/sort-collections'?: Linter.RuleEntry<JsonPackageSortCollections>;
2299
2349
  /**
2300
2350
  * Requires that all peer dependencies are also declared as dev dependencies
2301
2351
  *
2302
- * @see https://github.com/michaelfaith/eslint-plugin-package-json/blob/HEAD/docs/rules/specify-peers-locally.md
2352
+ * @see https://eslint-plugin-package-json.dev/rules/specify-peers-locally
2303
2353
  */
2304
2354
  'json-package/specify-peers-locally'?: Linter.RuleEntry<[]>;
2305
2355
  /**
2306
2356
  * Checks a dependency isn't specified more than once (i.e. in `dependencies`
2307
2357
  * and `devDependencies`)
2308
2358
  *
2309
- * @see https://github.com/michaelfaith/eslint-plugin-package-json/blob/HEAD/docs/rules/unique-dependencies.md
2359
+ * @see https://eslint-plugin-package-json.dev/rules/unique-dependencies
2310
2360
  */
2311
2361
  'json-package/unique-dependencies'?: Linter.RuleEntry<[]>;
2312
2362
  /**
2313
2363
  * Enforce that the `author` property is valid.
2314
2364
  *
2315
- * @see https://github.com/michaelfaith/eslint-plugin-package-json/blob/HEAD/docs/rules/valid-author.md
2365
+ * @see https://eslint-plugin-package-json.dev/rules/valid-properties/valid-author
2316
2366
  */
2317
2367
  'json-package/valid-author'?: Linter.RuleEntry<[]>;
2318
2368
  /**
2319
2369
  * Enforce that the `bin` property is valid.
2320
2370
  *
2321
- * @see https://github.com/michaelfaith/eslint-plugin-package-json/blob/HEAD/docs/rules/valid-bin.md
2371
+ * @see https://eslint-plugin-package-json.dev/rules/valid-properties/valid-bin
2322
2372
  */
2323
2373
  'json-package/valid-bin'?: Linter.RuleEntry<[]>;
2374
+ /**
2375
+ * Enforce that the `browser` property is valid.
2376
+ *
2377
+ * @see https://eslint-plugin-package-json.dev/rules/valid-properties/valid-browser
2378
+ */
2379
+ 'json-package/valid-browser'?: Linter.RuleEntry<[]>;
2324
2380
  /**
2325
2381
  * Enforce that the `bugs` property is valid.
2326
2382
  *
2327
- * @see https://github.com/michaelfaith/eslint-plugin-package-json/blob/HEAD/docs/rules/valid-bugs.md
2383
+ * @see https://eslint-plugin-package-json.dev/rules/valid-properties/valid-bugs
2328
2384
  */
2329
2385
  'json-package/valid-bugs'?: Linter.RuleEntry<[]>;
2330
2386
  /**
2331
- * Enforce that the `bundleDependencies` (also: `bundledDependencies`)
2332
- * property is valid.
2387
+ * Enforce that the `bundleDependencies` (also `bundledDependencies`) property
2388
+ * is valid.
2333
2389
  *
2334
- * @see https://github.com/michaelfaith/eslint-plugin-package-json/blob/HEAD/docs/rules/valid-bundleDependencies.md
2390
+ * @see https://eslint-plugin-package-json.dev/rules/valid-properties/valid-bundleDependencies
2335
2391
  */
2336
2392
  'json-package/valid-bundleDependencies'?: Linter.RuleEntry<[]>;
2337
2393
  /**
2338
2394
  * Enforce that the `config` property is valid.
2339
2395
  *
2340
- * @see https://github.com/michaelfaith/eslint-plugin-package-json/blob/HEAD/docs/rules/valid-config.md
2396
+ * @see https://eslint-plugin-package-json.dev/rules/valid-properties/valid-config
2341
2397
  */
2342
2398
  'json-package/valid-config'?: Linter.RuleEntry<[]>;
2343
2399
  /**
2344
2400
  * Enforce that the `contributors` property is valid.
2345
2401
  *
2346
- * @see https://github.com/michaelfaith/eslint-plugin-package-json/blob/HEAD/docs/rules/valid-contributors.md
2402
+ * @see https://eslint-plugin-package-json.dev/rules/valid-properties/valid-contributors
2347
2403
  */
2348
2404
  'json-package/valid-contributors'?: Linter.RuleEntry<[]>;
2349
2405
  /**
2350
2406
  * Enforce that the `cpu` property is valid.
2351
2407
  *
2352
- * @see https://github.com/michaelfaith/eslint-plugin-package-json/blob/HEAD/docs/rules/valid-cpu.md
2408
+ * @see https://eslint-plugin-package-json.dev/rules/valid-properties/valid-cpu
2353
2409
  */
2354
2410
  'json-package/valid-cpu'?: Linter.RuleEntry<[]>;
2355
2411
  /**
2356
2412
  * Enforce that the `dependencies` property is valid.
2357
2413
  *
2358
- * @see https://github.com/michaelfaith/eslint-plugin-package-json/blob/HEAD/docs/rules/valid-dependencies.md
2414
+ * @see https://eslint-plugin-package-json.dev/rules/valid-properties/valid-dependencies
2359
2415
  */
2360
2416
  'json-package/valid-dependencies'?: Linter.RuleEntry<[]>;
2361
2417
  /**
2362
2418
  * Enforce that the `description` property is valid.
2363
2419
  *
2364
- * @see https://github.com/michaelfaith/eslint-plugin-package-json/blob/HEAD/docs/rules/valid-description.md
2420
+ * @see https://eslint-plugin-package-json.dev/rules/valid-properties/valid-description
2365
2421
  */
2366
2422
  'json-package/valid-description'?: Linter.RuleEntry<[]>;
2367
2423
  /**
2368
2424
  * Enforce that the `devDependencies` property is valid.
2369
2425
  *
2370
- * @see https://github.com/michaelfaith/eslint-plugin-package-json/blob/HEAD/docs/rules/valid-devDependencies.md
2426
+ * @see https://eslint-plugin-package-json.dev/rules/valid-properties/valid-devDependencies
2371
2427
  */
2372
2428
  'json-package/valid-devDependencies'?: Linter.RuleEntry<[]>;
2373
2429
  /**
2374
2430
  * Enforce that the `devEngines` property is valid.
2375
2431
  *
2376
- * @see https://github.com/michaelfaith/eslint-plugin-package-json/blob/HEAD/docs/rules/valid-devEngines.md
2432
+ * @see https://eslint-plugin-package-json.dev/rules/valid-properties/valid-devEngines
2377
2433
  */
2378
2434
  'json-package/valid-devEngines'?: Linter.RuleEntry<[]>;
2379
2435
  /**
2380
2436
  * Enforce that the `directories` property is valid.
2381
2437
  *
2382
- * @see https://github.com/michaelfaith/eslint-plugin-package-json/blob/HEAD/docs/rules/valid-directories.md
2438
+ * @see https://eslint-plugin-package-json.dev/rules/valid-properties/valid-directories
2383
2439
  */
2384
2440
  'json-package/valid-directories'?: Linter.RuleEntry<[]>;
2385
2441
  /**
2386
2442
  * Enforce that the `engines` property is valid.
2387
2443
  *
2388
- * @see https://github.com/michaelfaith/eslint-plugin-package-json/blob/HEAD/docs/rules/valid-engines.md
2444
+ * @see https://eslint-plugin-package-json.dev/rules/valid-properties/valid-engines
2389
2445
  */
2390
2446
  'json-package/valid-engines'?: Linter.RuleEntry<[]>;
2391
2447
  /**
2392
2448
  * Enforce that the `exports` property is valid.
2393
2449
  *
2394
- * @see https://github.com/michaelfaith/eslint-plugin-package-json/blob/HEAD/docs/rules/valid-exports.md
2450
+ * @see https://eslint-plugin-package-json.dev/rules/valid-properties/valid-exports
2395
2451
  */
2396
2452
  'json-package/valid-exports'?: Linter.RuleEntry<[]>;
2397
2453
  /**
2398
2454
  * Enforce that the `files` property is valid.
2399
2455
  *
2400
- * @see https://github.com/michaelfaith/eslint-plugin-package-json/blob/HEAD/docs/rules/valid-files.md
2456
+ * @see https://eslint-plugin-package-json.dev/rules/valid-properties/valid-files
2401
2457
  */
2402
2458
  'json-package/valid-files'?: Linter.RuleEntry<[]>;
2403
2459
  /**
2404
2460
  * Enforce that the `funding` property is valid.
2405
2461
  *
2406
- * @see https://github.com/michaelfaith/eslint-plugin-package-json/blob/HEAD/docs/rules/valid-funding.md
2462
+ * @see https://eslint-plugin-package-json.dev/rules/valid-properties/valid-funding
2407
2463
  */
2408
2464
  'json-package/valid-funding'?: Linter.RuleEntry<[]>;
2465
+ /**
2466
+ * Enforce that the `gypfile` property is valid.
2467
+ *
2468
+ * @see https://eslint-plugin-package-json.dev/rules/valid-properties/valid-gypfile
2469
+ */
2470
+ 'json-package/valid-gypfile'?: Linter.RuleEntry<[]>;
2409
2471
  /**
2410
2472
  * Enforce that the `homepage` property is valid.
2411
2473
  *
2412
- * @see https://github.com/michaelfaith/eslint-plugin-package-json/blob/HEAD/docs/rules/valid-homepage.md
2474
+ * @see https://eslint-plugin-package-json.dev/rules/valid-properties/valid-homepage
2413
2475
  */
2414
2476
  'json-package/valid-homepage'?: Linter.RuleEntry<[]>;
2415
2477
  /**
2416
2478
  * Enforce that the `keywords` property is valid.
2417
2479
  *
2418
- * @see https://github.com/michaelfaith/eslint-plugin-package-json/blob/HEAD/docs/rules/valid-keywords.md
2480
+ * @see https://eslint-plugin-package-json.dev/rules/valid-properties/valid-keywords
2419
2481
  */
2420
2482
  'json-package/valid-keywords'?: Linter.RuleEntry<[]>;
2483
+ /**
2484
+ * Enforce that the `libc` property is valid.
2485
+ *
2486
+ * @see https://eslint-plugin-package-json.dev/rules/valid-properties/valid-libc
2487
+ */
2488
+ 'json-package/valid-libc'?: Linter.RuleEntry<[]>;
2421
2489
  /**
2422
2490
  * Enforce that the `license` property is valid.
2423
2491
  *
2424
- * @see https://github.com/michaelfaith/eslint-plugin-package-json/blob/HEAD/docs/rules/valid-license.md
2492
+ * @see https://eslint-plugin-package-json.dev/rules/valid-properties/valid-license
2425
2493
  */
2426
2494
  'json-package/valid-license'?: Linter.RuleEntry<[]>;
2427
2495
  /**
2428
2496
  * Enforce that the `main` property is valid.
2429
2497
  *
2430
- * @see https://github.com/michaelfaith/eslint-plugin-package-json/blob/HEAD/docs/rules/valid-main.md
2498
+ * @see https://eslint-plugin-package-json.dev/rules/valid-properties/valid-main
2431
2499
  */
2432
2500
  'json-package/valid-main'?: Linter.RuleEntry<[]>;
2433
2501
  /**
2434
2502
  * Enforce that the `man` property is valid.
2435
2503
  *
2436
- * @see https://github.com/michaelfaith/eslint-plugin-package-json/blob/HEAD/docs/rules/valid-man.md
2504
+ * @see https://eslint-plugin-package-json.dev/rules/valid-properties/valid-man
2437
2505
  */
2438
2506
  'json-package/valid-man'?: Linter.RuleEntry<[]>;
2439
2507
  /**
2440
2508
  * Enforce that the `module` property is valid.
2441
2509
  *
2442
- * @see https://github.com/michaelfaith/eslint-plugin-package-json/blob/HEAD/docs/rules/valid-module.md
2510
+ * @see https://eslint-plugin-package-json.dev/rules/valid-properties/valid-module
2443
2511
  */
2444
2512
  'json-package/valid-module'?: Linter.RuleEntry<[]>;
2445
2513
  /**
2446
- * Enforce that package names are valid npm package names
2514
+ * Enforce that the `name` property is valid.
2447
2515
  *
2448
- * @see https://github.com/michaelfaith/eslint-plugin-package-json/blob/HEAD/docs/rules/valid-name.md
2516
+ * @see https://eslint-plugin-package-json.dev/rules/valid-properties/valid-name
2449
2517
  */
2450
2518
  'json-package/valid-name'?: Linter.RuleEntry<[]>;
2451
2519
  /**
2452
2520
  * Enforce that the `optionalDependencies` property is valid.
2453
2521
  *
2454
- * @see https://github.com/michaelfaith/eslint-plugin-package-json/blob/HEAD/docs/rules/valid-optionalDependencies.md
2522
+ * @see https://eslint-plugin-package-json.dev/rules/valid-properties/valid-optionalDependencies
2455
2523
  */
2456
2524
  'json-package/valid-optionalDependencies'?: Linter.RuleEntry<[]>;
2457
2525
  /**
2458
2526
  * Enforce that the `os` property is valid.
2459
2527
  *
2460
- * @see https://github.com/michaelfaith/eslint-plugin-package-json/blob/HEAD/docs/rules/valid-os.md
2528
+ * @see https://eslint-plugin-package-json.dev/rules/valid-properties/valid-os
2461
2529
  */
2462
2530
  'json-package/valid-os'?: Linter.RuleEntry<[]>;
2463
- /**
2464
- * Enforce that package.json has all properties required by the npm spec
2465
- *
2466
- * @deprecated
2467
- * @see https://github.com/michaelfaith/eslint-plugin-package-json/blob/HEAD/docs/rules/valid-package-definition.md
2468
- */
2469
- 'json-package/valid-package-definition'?: Linter.RuleEntry<JsonPackageValidPackageDefinition>;
2470
2531
  /**
2471
2532
  * Enforce that the `packageManager` property is valid.
2472
2533
  *
2473
- * @see https://github.com/michaelfaith/eslint-plugin-package-json/blob/HEAD/docs/rules/valid-packageManager.md
2534
+ * @see https://eslint-plugin-package-json.dev/rules/valid-properties/valid-packageManager
2474
2535
  */
2475
2536
  'json-package/valid-packageManager'?: Linter.RuleEntry<[]>;
2476
2537
  /**
2477
2538
  * Enforce that the `peerDependencies` property is valid.
2478
2539
  *
2479
- * @see https://github.com/michaelfaith/eslint-plugin-package-json/blob/HEAD/docs/rules/valid-peerDependencies.md
2540
+ * @see https://eslint-plugin-package-json.dev/rules/valid-properties/valid-peerDependencies
2480
2541
  */
2481
2542
  'json-package/valid-peerDependencies'?: Linter.RuleEntry<[]>;
2543
+ /**
2544
+ * Enforce that the `peerDependenciesMeta` property is valid.
2545
+ *
2546
+ * @see https://eslint-plugin-package-json.dev/rules/valid-properties/valid-peerDependenciesMeta
2547
+ */
2548
+ 'json-package/valid-peerDependenciesMeta'?: Linter.RuleEntry<[]>;
2549
+ /**
2550
+ * Enforces that any dependencies declared in `peerDependenciesMeta` are also
2551
+ * defined in the package's `peerDependencies`.
2552
+ *
2553
+ * @see https://eslint-plugin-package-json.dev/rules/valid-peerDependenciesMeta-relationship
2554
+ */
2555
+ 'json-package/valid-peerDependenciesMeta-relationship'?: Linter.RuleEntry<[]>;
2482
2556
  /**
2483
2557
  * Enforce that the `private` property is valid.
2484
2558
  *
2485
- * @see https://github.com/michaelfaith/eslint-plugin-package-json/blob/HEAD/docs/rules/valid-private.md
2559
+ * @see https://eslint-plugin-package-json.dev/rules/valid-properties/valid-private
2486
2560
  */
2487
2561
  'json-package/valid-private'?: Linter.RuleEntry<[]>;
2488
2562
  /**
2489
2563
  * Enforce that the `publishConfig` property is valid.
2490
2564
  *
2491
- * @see https://github.com/michaelfaith/eslint-plugin-package-json/blob/HEAD/docs/rules/valid-publishConfig.md
2565
+ * @see https://eslint-plugin-package-json.dev/rules/valid-properties/valid-publishConfig
2492
2566
  */
2493
2567
  'json-package/valid-publishConfig'?: Linter.RuleEntry<[]>;
2494
2568
  /**
2495
2569
  * Enforce that the `repository` property is valid.
2496
2570
  *
2497
- * @see https://github.com/michaelfaith/eslint-plugin-package-json/blob/HEAD/docs/rules/valid-repository.md
2571
+ * @see https://eslint-plugin-package-json.dev/rules/valid-properties/valid-repository
2498
2572
  */
2499
2573
  'json-package/valid-repository'?: Linter.RuleEntry<[]>;
2500
2574
  /**
2501
2575
  * Enforce that if repository directory is specified, it matches the path to
2502
2576
  * the package.json file
2503
2577
  *
2504
- * @see https://github.com/michaelfaith/eslint-plugin-package-json/blob/HEAD/docs/rules/valid-repository-directory.md
2578
+ * @see https://eslint-plugin-package-json.dev/rules/valid-repository-directory
2505
2579
  */
2506
2580
  'json-package/valid-repository-directory'?: Linter.RuleEntry<[]>;
2507
2581
  /**
2508
2582
  * Enforce that the `scripts` property is valid.
2509
2583
  *
2510
- * @see https://github.com/michaelfaith/eslint-plugin-package-json/blob/HEAD/docs/rules/valid-scripts.md
2584
+ * @see https://eslint-plugin-package-json.dev/rules/valid-properties/valid-scripts
2511
2585
  */
2512
2586
  'json-package/valid-scripts'?: Linter.RuleEntry<[]>;
2513
2587
  /**
2514
2588
  * Enforce that the `sideEffects` property is valid.
2515
2589
  *
2516
- * @see https://github.com/michaelfaith/eslint-plugin-package-json/blob/HEAD/docs/rules/valid-sideEffects.md
2590
+ * @see https://eslint-plugin-package-json.dev/rules/valid-properties/valid-sideEffects
2517
2591
  */
2518
2592
  'json-package/valid-sideEffects'?: Linter.RuleEntry<[]>;
2519
2593
  /**
2520
2594
  * Enforce that the `type` property is valid.
2521
2595
  *
2522
- * @see https://github.com/michaelfaith/eslint-plugin-package-json/blob/HEAD/docs/rules/valid-type.md
2596
+ * @see https://eslint-plugin-package-json.dev/rules/valid-properties/valid-type
2523
2597
  */
2524
2598
  'json-package/valid-type'?: Linter.RuleEntry<[]>;
2525
2599
  /**
2526
- * Enforce that package versions are valid semver specifiers
2600
+ * Enforce that the `version` property is valid.
2527
2601
  *
2528
- * @see https://github.com/michaelfaith/eslint-plugin-package-json/blob/HEAD/docs/rules/valid-version.md
2602
+ * @see https://eslint-plugin-package-json.dev/rules/valid-properties/valid-version
2529
2603
  */
2530
2604
  'json-package/valid-version'?: Linter.RuleEntry<[]>;
2531
2605
  /**
2532
2606
  * Enforce that the `workspaces` property is valid.
2533
2607
  *
2534
- * @see https://github.com/michaelfaith/eslint-plugin-package-json/blob/HEAD/docs/rules/valid-workspaces.md
2608
+ * @see https://eslint-plugin-package-json.dev/rules/valid-properties/valid-workspaces
2535
2609
  */
2536
2610
  'json-package/valid-workspaces'?: Linter.RuleEntry<[]>;
2537
2611
  /**
@@ -7575,7 +7649,8 @@ interface RuleOptions {
7575
7649
  */
7576
7650
  'test/prefer-expect-resolves'?: Linter.RuleEntry<[]>;
7577
7651
  /**
7578
- * Enforce using `expectTypeOf` instead of `expect(typeof ...)`
7652
+ * Enforce using `expect(...).toBeTypeOf(...)` instead of `expect(typeof
7653
+ * ...).toBe(...)`
7579
7654
  *
7580
7655
  * @see https://github.com/vitest-dev/eslint-plugin-vitest/blob/main/docs/rules/prefer-expect-type-of.md
7581
7656
  */
@@ -11154,7 +11229,7 @@ type JsonPackageNoEmptyFields = [] | [{
11154
11229
  ignoreProperties?: string[];
11155
11230
  }]; // ----- json-package/order-properties -----
11156
11231
  type JsonPackageOrderProperties = [] | [{
11157
- order?: ('legacy' | 'sort-package-json') | string[];
11232
+ order?: 'sort-package-json' | string[];
11158
11233
  }]; // ----- json-package/repository-shorthand -----
11159
11234
  type JsonPackageRepositoryShorthand = [] | [{
11160
11235
  form?: 'object' | 'shorthand';
@@ -11168,12 +11243,18 @@ type JsonPackageRequireAuthor = [] | [{
11168
11243
  }]; // ----- json-package/require-bin -----
11169
11244
  type JsonPackageRequireBin = [] | [{
11170
11245
  ignorePrivate?: boolean;
11246
+ }]; // ----- json-package/require-browser -----
11247
+ type JsonPackageRequireBrowser = [] | [{
11248
+ ignorePrivate?: boolean;
11171
11249
  }]; // ----- json-package/require-bugs -----
11172
11250
  type JsonPackageRequireBugs = [] | [{
11173
11251
  ignorePrivate?: boolean;
11174
11252
  }]; // ----- json-package/require-bundleDependencies -----
11175
11253
  type JsonPackageRequireBundleDependencies = [] | [{
11176
11254
  ignorePrivate?: boolean;
11255
+ }]; // ----- json-package/require-config -----
11256
+ type JsonPackageRequireConfig = [] | [{
11257
+ ignorePrivate?: boolean;
11177
11258
  }]; // ----- json-package/require-contributors -----
11178
11259
  type JsonPackageRequireContributors = [] | [{
11179
11260
  ignorePrivate?: boolean;
@@ -11207,12 +11288,18 @@ type JsonPackageRequireFiles = [] | [{
11207
11288
  }]; // ----- json-package/require-funding -----
11208
11289
  type JsonPackageRequireFunding = [] | [{
11209
11290
  ignorePrivate?: boolean;
11291
+ }]; // ----- json-package/require-gypfile -----
11292
+ type JsonPackageRequireGypfile = [] | [{
11293
+ ignorePrivate?: boolean;
11210
11294
  }]; // ----- json-package/require-homepage -----
11211
11295
  type JsonPackageRequireHomepage = [] | [{
11212
11296
  ignorePrivate?: boolean;
11213
11297
  }]; // ----- json-package/require-keywords -----
11214
11298
  type JsonPackageRequireKeywords = [] | [{
11215
11299
  ignorePrivate?: boolean;
11300
+ }]; // ----- json-package/require-libc -----
11301
+ type JsonPackageRequireLibc = [] | [{
11302
+ ignorePrivate?: boolean;
11216
11303
  }]; // ----- json-package/require-license -----
11217
11304
  type JsonPackageRequireLicense = [] | [{
11218
11305
  ignorePrivate?: boolean;
@@ -11282,10 +11369,7 @@ type JsonPackageRestrictTopLevelProperties = [] | [{
11282
11369
  property: string;
11283
11370
  })[];
11284
11371
  }]; // ----- json-package/sort-collections -----
11285
- type JsonPackageSortCollections = [] | [string[]]; // ----- json-package/valid-package-definition -----
11286
- type JsonPackageValidPackageDefinition = [] | [{
11287
- ignoreProperties?: string[];
11288
- }]; // ----- json/array-bracket-newline -----
11372
+ type JsonPackageSortCollections = [] | [string[]]; // ----- json/array-bracket-newline -----
11289
11373
  type JsonArrayBracketNewline = [] | [('always' | 'never' | 'consistent') | {
11290
11374
  multiline?: boolean;
11291
11375
  minItems?: number | null;
@@ -12680,7 +12764,6 @@ type NodeNoUnpublishedBin = [] | [{
12680
12764
  exclude?: string[];
12681
12765
  replace: [string, string];
12682
12766
  }[]];
12683
- [k: string]: unknown | undefined;
12684
12767
  }]; // ----- node/no-unpublished-import -----
12685
12768
  type NodeNoUnpublishedImport = [] | [{
12686
12769
  allowModules?: string[];
@@ -12734,7 +12817,7 @@ type NodeNoUnsupportedFeaturesEsSyntax = [] | [{
12734
12817
  type NodeNoUnsupportedFeaturesNodeBuiltins = [] | [{
12735
12818
  version?: string;
12736
12819
  allowExperimental?: boolean;
12737
- ignores?: ('__filename' | '__dirname' | 'require' | 'require.cache' | 'require.extensions' | 'require.main' | 'require.resolve' | 'require.resolve.paths' | 'module' | 'module.children' | 'module.exports' | 'module.filename' | 'module.id' | 'module.isPreloading' | 'module.loaded' | 'module.parent' | 'module.path' | 'module.paths' | 'module.require' | 'exports' | 'AbortController' | 'AbortSignal' | 'AbortSignal.abort' | 'AbortSignal.timeout' | 'AbortSignal.any' | 'DOMException' | 'FormData' | 'Headers' | 'MessageEvent' | 'Navigator' | 'Request' | 'Response' | 'WebAssembly' | 'WebSocket' | 'fetch' | 'global' | 'queueMicrotask' | 'navigator' | 'navigator.hardwareConcurrency' | 'navigator.language' | 'navigator.languages' | 'navigator.platform' | 'navigator.userAgent' | 'structuredClone' | 'localStorage' | 'sessionStorage' | 'Storage' | 'Blob' | 'new Buffer()' | 'Buffer' | 'Buffer.alloc' | 'Buffer.allocUnsafe' | 'Buffer.allocUnsafeSlow' | 'Buffer.byteLength' | 'Buffer.compare' | 'Buffer.concat' | 'Buffer.copyBytesFrom' | 'Buffer.from' | 'Buffer.isBuffer' | 'Buffer.isEncoding' | 'File' | 'atob' | 'btoa' | 'console' | 'console.profile' | 'console.profileEnd' | 'console.timeStamp' | 'console.Console' | 'console.assert' | 'console.clear' | 'console.count' | 'console.countReset' | 'console.debug' | 'console.dir' | 'console.dirxml' | 'console.error' | 'console.group' | 'console.groupCollapsed' | 'console.groupEnd' | 'console.info' | 'console.log' | 'console.table' | 'console.time' | 'console.timeEnd' | 'console.timeLog' | 'console.trace' | 'console.warn' | 'crypto' | 'crypto.subtle' | 'crypto.subtle.decrypt' | 'crypto.subtle.deriveBits' | 'crypto.subtle.deriveKey' | 'crypto.subtle.digest' | 'crypto.subtle.encrypt' | 'crypto.subtle.exportKey' | 'crypto.subtle.generateKey' | 'crypto.subtle.importKey' | 'crypto.subtle.sign' | 'crypto.subtle.unwrapKey' | 'crypto.subtle.verify' | 'crypto.subtle.wrapKey' | 'crypto.getRandomValues' | 'crypto.randomUUID' | 'Crypto' | 'CryptoKey' | 'SubtleCrypto' | 'CloseEvent' | 'CustomEvent' | 'Event' | 'EventSource' | 'EventTarget' | 'PerformanceEntry' | 'PerformanceMark' | 'PerformanceMeasure' | 'PerformanceObserver' | 'PerformanceObserverEntryList' | 'PerformanceResourceTiming' | 'performance' | 'performance.clearMarks' | 'performance.clearMeasures' | 'performance.clearResourceTimings' | 'performance.eventLoopUtilization' | 'performance.getEntries' | 'performance.getEntriesByName' | 'performance.getEntriesByType' | 'performance.mark' | 'performance.markResourceTiming' | 'performance.measure' | 'performance.nodeTiming' | 'performance.nodeTiming.bootstrapComplete' | 'performance.nodeTiming.environment' | 'performance.nodeTiming.idleTime' | 'performance.nodeTiming.loopExit' | 'performance.nodeTiming.loopStart' | 'performance.nodeTiming.nodeStart' | 'performance.nodeTiming.uvMetricsInfo' | 'performance.nodeTiming.v8Start' | 'performance.now' | 'performance.onresourcetimingbufferfull' | 'performance.setResourceTimingBufferSize' | 'performance.timeOrigin' | 'performance.timerify' | 'performance.toJSON' | 'process' | 'process.allowedNodeEnvironmentFlags' | 'process.availableMemory' | 'process.arch' | 'process.argv' | 'process.argv0' | 'process.channel' | 'process.config' | 'process.connected' | 'process.debugPort' | 'process.env' | 'process.execArgv' | 'process.execPath' | 'process.execve' | 'process.exitCode' | 'process.features.cached_builtins' | 'process.features.debug' | 'process.features.inspector' | 'process.features.ipv6' | 'process.features.require_module' | 'process.features.tls' | 'process.features.tls_alpn' | 'process.features.tls_ocsp' | 'process.features.tls_sni' | 'process.features.typescript' | 'process.features.uv' | 'process.finalization.register' | 'process.finalization.registerBeforeExit' | 'process.finalization.unregister' | 'process.getBuiltinModule' | 'process.mainModule' | 'process.noDeprecation' | 'process.permission' | 'process.pid' | 'process.platform' | 'process.ppid' | 'process.ref' | 'process.release' | 'process.report' | 'process.report.excludeEnv' | 'process.sourceMapsEnabled' | 'process.stdin' | 'process.stdin.isRaw' | 'process.stdin.isTTY' | 'process.stdin.setRawMode' | 'process.stdout' | 'process.stdout.clearLine' | 'process.stdout.clearScreenDown' | 'process.stdout.columns' | 'process.stdout.cursorTo' | 'process.stdout.getColorDepth' | 'process.stdout.getWindowSize' | 'process.stdout.hasColors' | 'process.stdout.isTTY' | 'process.stdout.moveCursor' | 'process.stdout.rows' | 'process.stderr' | 'process.stderr.clearLine' | 'process.stderr.clearScreenDown' | 'process.stderr.columns' | 'process.stderr.cursorTo' | 'process.stderr.getColorDepth' | 'process.stderr.getWindowSize' | 'process.stderr.hasColors' | 'process.stderr.isTTY' | 'process.stderr.moveCursor' | 'process.stderr.rows' | 'process.threadCpuUsage' | 'process.throwDeprecation' | 'process.title' | 'process.traceDeprecation' | 'process.version' | 'process.versions' | 'process.abort' | 'process.chdir' | 'process.constrainedMemory' | 'process.cpuUsage' | 'process.cwd' | 'process.disconnect' | 'process.dlopen' | 'process.emitWarning' | 'process.exit' | 'process.getActiveResourcesInfo' | 'process.getegid' | 'process.geteuid' | 'process.getgid' | 'process.getgroups' | 'process.getuid' | 'process.hasUncaughtExceptionCaptureCallback' | 'process.hrtime' | 'process.hrtime.bigint' | 'process.initgroups' | 'process.kill' | 'process.loadEnvFile' | 'process.memoryUsage' | 'process.rss' | 'process.nextTick' | 'process.resourceUsage' | 'process.send' | 'process.setegid' | 'process.seteuid' | 'process.setgid' | 'process.setgroups' | 'process.setuid' | 'process.setSourceMapsEnabled' | 'process.setUncaughtExceptionCaptureCallback' | 'process.umask' | 'process.unref' | 'process.uptime' | 'ReadableStream' | 'ReadableStream.from' | 'ReadableStreamDefaultReader' | 'ReadableStreamBYOBReader' | 'ReadableStreamDefaultController' | 'ReadableByteStreamController' | 'ReadableStreamBYOBRequest' | 'WritableStream' | 'WritableStreamDefaultWriter' | 'WritableStreamDefaultController' | 'TransformStream' | 'TransformStreamDefaultController' | 'ByteLengthQueuingStrategy' | 'CountQueuingStrategy' | 'TextEncoderStream' | 'TextDecoderStream' | 'CompressionStream' | 'DecompressionStream' | 'setInterval' | 'clearInterval' | 'setTimeout' | 'clearTimeout' | 'setImmediate' | 'clearImmediate' | 'URL' | 'URL.canParse' | 'URL.createObjectURL' | 'URL.revokeObjectURL' | 'URLSearchParams' | 'TextDecoder' | 'TextEncoder' | 'BroadcastChannel' | 'MessageChannel' | 'MessagePort' | 'assert' | 'assert.Assert' | 'assert.assert' | 'assert.deepEqual' | 'assert.deepStrictEqual' | 'assert.doesNotMatch' | 'assert.doesNotReject' | 'assert.doesNotThrow' | 'assert.equal' | 'assert.fail' | 'assert.ifError' | 'assert.match' | 'assert.notDeepEqual' | 'assert.notDeepStrictEqual' | 'assert.notEqual' | 'assert.notStrictEqual' | 'assert.ok' | 'assert.partialDeepStrictEqual' | 'assert.rejects' | 'assert.strictEqual' | 'assert.throws' | 'assert.CallTracker' | 'assert.strict' | 'assert.strict.Assert' | 'assert.strict.assert' | 'assert.strict.deepEqual' | 'assert.strict.deepStrictEqual' | 'assert.strict.doesNotMatch' | 'assert.strict.doesNotReject' | 'assert.strict.doesNotThrow' | 'assert.strict.equal' | 'assert.strict.fail' | 'assert.strict.ifError' | 'assert.strict.match' | 'assert.strict.notDeepEqual' | 'assert.strict.notDeepStrictEqual' | 'assert.strict.notEqual' | 'assert.strict.notStrictEqual' | 'assert.strict.ok' | 'assert.strict.partialDeepStrictEqual' | 'assert.strict.rejects' | 'assert.strict.strictEqual' | 'assert.strict.throws' | 'assert.strict.CallTracker' | 'assert/strict' | 'assert/strict.Assert' | 'assert/strict.assert' | 'assert/strict.deepEqual' | 'assert/strict.deepStrictEqual' | 'assert/strict.doesNotMatch' | 'assert/strict.doesNotReject' | 'assert/strict.doesNotThrow' | 'assert/strict.equal' | 'assert/strict.fail' | 'assert/strict.ifError' | 'assert/strict.match' | 'assert/strict.notDeepEqual' | 'assert/strict.notDeepStrictEqual' | 'assert/strict.notEqual' | 'assert/strict.notStrictEqual' | 'assert/strict.ok' | 'assert/strict.partialDeepStrictEqual' | 'assert/strict.rejects' | 'assert/strict.strictEqual' | 'assert/strict.throws' | 'assert/strict.CallTracker' | 'async_hooks' | 'async_hooks.createHook' | 'async_hooks.executionAsyncResource' | 'async_hooks.executionAsyncId' | 'async_hooks.triggerAsyncId' | 'async_hooks.AsyncLocalStorage' | 'async_hooks.AsyncLocalStorage.bind' | 'async_hooks.AsyncLocalStorage.snapshot' | 'async_hooks.AsyncResource' | 'async_hooks.AsyncResource.bind' | 'buffer' | 'buffer.constants' | 'buffer.INSPECT_MAX_BYTES' | 'buffer.kMaxLength' | 'buffer.kStringMaxLength' | 'buffer.atob' | 'buffer.btoa' | 'buffer.isAscii' | 'buffer.isUtf8' | 'buffer.resolveObjectURL' | 'buffer.transcode' | 'buffer.SlowBuffer' | 'buffer.Blob' | 'new buffer.Buffer()' | 'buffer.Buffer' | 'buffer.Buffer.alloc' | 'buffer.Buffer.allocUnsafe' | 'buffer.Buffer.allocUnsafeSlow' | 'buffer.Buffer.byteLength' | 'buffer.Buffer.compare' | 'buffer.Buffer.concat' | 'buffer.Buffer.copyBytesFrom' | 'buffer.Buffer.from' | 'buffer.Buffer.isBuffer' | 'buffer.Buffer.isEncoding' | 'buffer.File' | 'child_process' | 'child_process.exec' | 'child_process.execFile' | 'child_process.fork' | 'child_process.spawn' | 'child_process.execFileSync' | 'child_process.execSync' | 'child_process.spawnSync' | 'child_process.ChildProcess' | 'cluster' | 'cluster.isMaster' | 'cluster.isPrimary' | 'cluster.isWorker' | 'cluster.schedulingPolicy' | 'cluster.settings' | 'cluster.worker' | 'cluster.workers' | 'cluster.disconnect' | 'cluster.fork' | 'cluster.setupMaster' | 'cluster.setupPrimary' | 'cluster.Worker' | 'crypto.constants' | 'crypto.fips' | 'crypto.webcrypto' | 'crypto.webcrypto.subtle' | 'crypto.webcrypto.subtle.decrypt' | 'crypto.webcrypto.subtle.deriveBits' | 'crypto.webcrypto.subtle.deriveKey' | 'crypto.webcrypto.subtle.digest' | 'crypto.webcrypto.subtle.encrypt' | 'crypto.webcrypto.subtle.exportKey' | 'crypto.webcrypto.subtle.generateKey' | 'crypto.webcrypto.subtle.importKey' | 'crypto.webcrypto.subtle.sign' | 'crypto.webcrypto.subtle.unwrapKey' | 'crypto.webcrypto.subtle.verify' | 'crypto.webcrypto.subtle.wrapKey' | 'crypto.webcrypto.getRandomValues' | 'crypto.webcrypto.randomUUID' | 'crypto.checkPrime' | 'crypto.checkPrimeSync' | 'crypto.createCipher' | 'crypto.createCipheriv' | 'crypto.createDecipher' | 'crypto.createDecipheriv' | 'crypto.createDiffieHellman' | 'crypto.createDiffieHellmanGroup' | 'crypto.createECDH' | 'crypto.createHash' | 'crypto.createHmac' | 'crypto.createPrivateKey' | 'crypto.createPublicKey' | 'crypto.createSecretKey' | 'crypto.createSign' | 'crypto.createVerify' | 'crypto.diffieHellman' | 'crypto.generateKey' | 'crypto.generateKeyPair' | 'crypto.generateKeyPairSync' | 'crypto.generateKeySync' | 'crypto.generatePrime' | 'crypto.generatePrimeSync' | 'crypto.getCipherInfo' | 'crypto.getCiphers' | 'crypto.getCurves' | 'crypto.getDiffieHellman' | 'crypto.getFips' | 'crypto.getHashes' | 'crypto.hash' | 'crypto.hkdf' | 'crypto.hkdfSync' | 'crypto.pbkdf2' | 'crypto.pbkdf2Sync' | 'crypto.privateDecrypt' | 'crypto.privateEncrypt' | 'crypto.publicDecrypt' | 'crypto.publicEncrypt' | 'crypto.randomBytes' | 'crypto.randomFillSync' | 'crypto.randomFill' | 'crypto.randomInt' | 'crypto.scrypt' | 'crypto.scryptSync' | 'crypto.secureHeapUsed' | 'crypto.setEngine' | 'crypto.setFips' | 'crypto.sign' | 'crypto.timingSafeEqual' | 'crypto.verify' | 'crypto.Certificate' | 'crypto.Certificate.exportChallenge' | 'crypto.Certificate.exportPublicKey' | 'crypto.Certificate.verifySpkac' | 'crypto.Cipher' | 'crypto.Decipher' | 'crypto.DiffieHellman' | 'crypto.DiffieHellmanGroup' | 'crypto.ECDH' | 'crypto.ECDH.convertKey' | 'crypto.Hash()' | 'new crypto.Hash()' | 'crypto.Hash' | 'crypto.Hmac()' | 'new crypto.Hmac()' | 'crypto.Hmac' | 'crypto.KeyObject' | 'crypto.KeyObject.from' | 'crypto.Sign' | 'crypto.Verify' | 'crypto.X509Certificate' | 'dgram' | 'dgram.createSocket' | 'dgram.Socket' | 'diagnostics_channel' | 'diagnostics_channel.hasSubscribers' | 'diagnostics_channel.channel' | 'diagnostics_channel.subscribe' | 'diagnostics_channel.unsubscribe' | 'diagnostics_channel.tracingChannel' | 'diagnostics_channel.Channel' | 'diagnostics_channel.TracingChannel' | 'dns' | 'dns.Resolver' | 'dns.getServers' | 'dns.lookup' | 'dns.lookupService' | 'dns.resolve' | 'dns.resolve4' | 'dns.resolve6' | 'dns.resolveAny' | 'dns.resolveCname' | 'dns.resolveCaa' | 'dns.resolveMx' | 'dns.resolveNaptr' | 'dns.resolveNs' | 'dns.resolvePtr' | 'dns.resolveSoa' | 'dns.resolveSrv' | 'dns.resolveTlsa' | 'dns.resolveTxt' | 'dns.reverse' | 'dns.setDefaultResultOrder' | 'dns.getDefaultResultOrder' | 'dns.setServers' | 'dns.promises' | 'dns.promises.Resolver' | 'dns.promises.cancel' | 'dns.promises.getServers' | 'dns.promises.lookup' | 'dns.promises.lookupService' | 'dns.promises.resolve' | 'dns.promises.resolve4' | 'dns.promises.resolve6' | 'dns.promises.resolveAny' | 'dns.promises.resolveCaa' | 'dns.promises.resolveCname' | 'dns.promises.resolveMx' | 'dns.promises.resolveNaptr' | 'dns.promises.resolveNs' | 'dns.promises.resolvePtr' | 'dns.promises.resolveSoa' | 'dns.promises.resolveSrv' | 'dns.promises.resolveTlsa' | 'dns.promises.resolveTxt' | 'dns.promises.reverse' | 'dns.promises.setDefaultResultOrder' | 'dns.promises.getDefaultResultOrder' | 'dns.promises.setServers' | 'dns/promises' | 'dns/promises.Resolver' | 'dns/promises.cancel' | 'dns/promises.getServers' | 'dns/promises.lookup' | 'dns/promises.lookupService' | 'dns/promises.resolve' | 'dns/promises.resolve4' | 'dns/promises.resolve6' | 'dns/promises.resolveAny' | 'dns/promises.resolveCaa' | 'dns/promises.resolveCname' | 'dns/promises.resolveMx' | 'dns/promises.resolveNaptr' | 'dns/promises.resolveNs' | 'dns/promises.resolvePtr' | 'dns/promises.resolveSoa' | 'dns/promises.resolveSrv' | 'dns/promises.resolveTlsa' | 'dns/promises.resolveTxt' | 'dns/promises.reverse' | 'dns/promises.setDefaultResultOrder' | 'dns/promises.getDefaultResultOrder' | 'dns/promises.setServers' | 'domain' | 'domain.create' | 'domain.Domain' | 'events' | 'events.Event' | 'events.EventTarget' | 'events.CustomEvent' | 'events.NodeEventTarget' | 'events.EventEmitter' | 'events.EventEmitter.defaultMaxListeners' | 'events.EventEmitter.errorMonitor' | 'events.EventEmitter.captureRejections' | 'events.EventEmitter.captureRejectionSymbol' | 'events.EventEmitter.getEventListeners' | 'events.EventEmitter.getMaxListeners' | 'events.EventEmitter.once' | 'events.EventEmitter.listenerCount' | 'events.EventEmitter.on' | 'events.EventEmitter.setMaxListeners' | 'events.EventEmitter.addAbortListener' | 'events.EventEmitterAsyncResource' | 'events.EventEmitterAsyncResource.defaultMaxListeners' | 'events.EventEmitterAsyncResource.errorMonitor' | 'events.EventEmitterAsyncResource.captureRejections' | 'events.EventEmitterAsyncResource.captureRejectionSymbol' | 'events.EventEmitterAsyncResource.getEventListeners' | 'events.EventEmitterAsyncResource.getMaxListeners' | 'events.EventEmitterAsyncResource.once' | 'events.EventEmitterAsyncResource.listenerCount' | 'events.EventEmitterAsyncResource.on' | 'events.EventEmitterAsyncResource.setMaxListeners' | 'events.EventEmitterAsyncResource.addAbortListener' | 'events.defaultMaxListeners' | 'events.errorMonitor' | 'events.captureRejections' | 'events.captureRejectionSymbol' | 'events.getEventListeners' | 'events.getMaxListeners' | 'events.once' | 'events.listenerCount' | 'events.on' | 'events.setMaxListeners' | 'events.addAbortListener' | 'fs' | 'fs.promises' | 'fs.promises.FileHandle' | 'fs.promises.access' | 'fs.promises.appendFile' | 'fs.promises.chmod' | 'fs.promises.chown' | 'fs.promises.constants' | 'fs.promises.copyFile' | 'fs.promises.cp' | 'fs.promises.glob' | 'fs.promises.lchmod' | 'fs.promises.lchown' | 'fs.promises.link' | 'fs.promises.lstat' | 'fs.promises.lutimes' | 'fs.promises.mkdir' | 'fs.promises.mkdtemp' | 'fs.promises.open' | 'fs.promises.opendir' | 'fs.promises.readFile' | 'fs.promises.readdir' | 'fs.promises.readlink' | 'fs.promises.realpath' | 'fs.promises.rename' | 'fs.promises.rm' | 'fs.promises.rmdir' | 'fs.promises.stat' | 'fs.promises.statfs' | 'fs.promises.symlink' | 'fs.promises.truncate' | 'fs.promises.unlink' | 'fs.promises.utimes' | 'fs.promises.watch' | 'fs.promises.writeFile' | 'fs.access' | 'fs.appendFile' | 'fs.chmod' | 'fs.chown' | 'fs.close' | 'fs.copyFile' | 'fs.cp' | 'fs.createReadStream' | 'fs.createWriteStream' | 'fs.exists' | 'fs.fchmod' | 'fs.fchown' | 'fs.fdatasync' | 'fs.fstat' | 'fs.fsync' | 'fs.ftruncate' | 'fs.futimes' | 'fs.glob' | 'fs.lchmod' | 'fs.lchown' | 'fs.link' | 'fs.lstat' | 'fs.lutimes' | 'fs.mkdir' | 'fs.mkdtemp' | 'fs.native' | 'fs.open' | 'fs.openAsBlob' | 'fs.opendir' | 'fs.read' | 'fs.readdir' | 'fs.readFile' | 'fs.readlink' | 'fs.readv' | 'fs.realpath' | 'fs.realpath.native' | 'fs.rename' | 'fs.rm' | 'fs.rmdir' | 'fs.stat' | 'fs.statfs' | 'fs.symlink' | 'fs.truncate' | 'fs.unlink' | 'fs.unwatchFile' | 'fs.utimes' | 'fs.watch' | 'fs.watchFile' | 'fs.write' | 'fs.writeFile' | 'fs.writev' | 'fs.accessSync' | 'fs.appendFileSync' | 'fs.chmodSync' | 'fs.chownSync' | 'fs.closeSync' | 'fs.copyFileSync' | 'fs.cpSync' | 'fs.existsSync' | 'fs.fchmodSync' | 'fs.fchownSync' | 'fs.fdatasyncSync' | 'fs.fstatSync' | 'fs.fsyncSync' | 'fs.ftruncateSync' | 'fs.futimesSync' | 'fs.globSync' | 'fs.lchmodSync' | 'fs.lchownSync' | 'fs.linkSync' | 'fs.lstatSync' | 'fs.lutimesSync' | 'fs.mkdirSync' | 'fs.mkdtempSync' | 'fs.opendirSync' | 'fs.openSync' | 'fs.readdirSync' | 'fs.readFileSync' | 'fs.readlinkSync' | 'fs.readSync' | 'fs.readvSync' | 'fs.realpathSync' | 'fs.realpathSync.native' | 'fs.renameSync' | 'fs.rmdirSync' | 'fs.rmSync' | 'fs.statfsSync' | 'fs.statSync' | 'fs.symlinkSync' | 'fs.truncateSync' | 'fs.unlinkSync' | 'fs.utimesSync' | 'fs.writeFileSync' | 'fs.writeSync' | 'fs.writevSync' | 'fs.constants' | 'fs.Dir' | 'fs.Dirent' | 'fs.FSWatcher' | 'fs.StatWatcher' | 'fs.ReadStream' | 'fs.Stats()' | 'new fs.Stats()' | 'fs.Stats' | 'fs.StatFs' | 'fs.WriteStream' | 'fs.common_objects' | 'fs/promises' | 'fs/promises.FileHandle' | 'fs/promises.access' | 'fs/promises.appendFile' | 'fs/promises.chmod' | 'fs/promises.chown' | 'fs/promises.constants' | 'fs/promises.copyFile' | 'fs/promises.cp' | 'fs/promises.glob' | 'fs/promises.lchmod' | 'fs/promises.lchown' | 'fs/promises.link' | 'fs/promises.lstat' | 'fs/promises.lutimes' | 'fs/promises.mkdir' | 'fs/promises.mkdtemp' | 'fs/promises.open' | 'fs/promises.opendir' | 'fs/promises.readFile' | 'fs/promises.readdir' | 'fs/promises.readlink' | 'fs/promises.realpath' | 'fs/promises.rename' | 'fs/promises.rm' | 'fs/promises.rmdir' | 'fs/promises.stat' | 'fs/promises.statfs' | 'fs/promises.symlink' | 'fs/promises.truncate' | 'fs/promises.unlink' | 'fs/promises.utimes' | 'fs/promises.watch' | 'fs/promises.writeFile' | 'http2' | 'http2.constants' | 'http2.sensitiveHeaders' | 'http2.createServer' | 'http2.createSecureServer' | 'http2.connect' | 'http2.getDefaultSettings' | 'http2.getPackedSettings' | 'http2.getUnpackedSettings' | 'http2.performServerHandshake' | 'http2.Http2Session' | 'http2.ServerHttp2Session' | 'http2.ClientHttp2Session' | 'http2.Http2Stream' | 'http2.ClientHttp2Stream' | 'http2.ServerHttp2Stream' | 'http2.Http2Server' | 'http2.Http2SecureServer' | 'http2.Http2ServerRequest' | 'http2.Http2ServerResponse' | 'http' | 'http.METHODS' | 'http.STATUS_CODES' | 'http.globalAgent' | 'http.maxHeaderSize' | 'http.createServer' | 'http.get' | 'http.request' | 'http.validateHeaderName' | 'http.validateHeaderValue' | 'http.setMaxIdleHTTPParsers' | 'http.Agent' | 'http.ClientRequest' | 'http.Server' | 'http.ServerResponse' | 'http.IncomingMessage' | 'http.OutgoingMessage' | 'http.WebSocket' | '_http_agent' | '_http_client' | '_http_common' | '_http_incoming' | '_http_outgoing' | '_http_server' | 'https' | 'https.globalAgent' | 'https.createServer' | 'https.get' | 'https.request' | 'https.Agent' | 'https.Server' | 'inspector' | 'inspector.Session' | 'inspector.Network.dataReceived' | 'inspector.Network.dataSent' | 'inspector.Network.loadingFailed' | 'inspector.Network.loadingFinished' | 'inspector.Network.requestWillBeSent' | 'inspector.Network.responseReceived' | 'inspector.NetworkResources.put' | 'inspector.console' | 'inspector.close' | 'inspector.open' | 'inspector.url' | 'inspector.waitForDebugger' | 'inspector/promises' | 'inspector/promises.Session' | 'inspector/promises.Network.dataReceived' | 'inspector/promises.Network.dataSent' | 'inspector/promises.Network.loadingFailed' | 'inspector/promises.Network.loadingFinished' | 'inspector/promises.Network.requestWillBeSent' | 'inspector/promises.Network.responseReceived' | 'inspector/promises.NetworkResources.put' | 'inspector/promises.console' | 'inspector/promises.close' | 'inspector/promises.open' | 'inspector/promises.url' | 'inspector/promises.waitForDebugger' | 'module.builtinModules' | 'module.constants.compileCacheStatus' | 'module.createRequire' | 'module.createRequireFromPath' | 'module.enableCompileCache' | 'module.findPackageJSON' | 'module.flushCompileCache' | 'module.getCompileCacheDir' | 'module.getSourceMapsSupport' | 'module.isBuiltin' | 'module.registerHooks' | 'module.register' | 'module.setSourceMapsSupport' | 'module.stripTypeScriptTypes' | 'module.syncBuiltinESMExports' | 'module.findSourceMap' | 'module.SourceMap' | 'module.Module.builtinModules' | 'module.Module.createRequire' | 'module.Module.createRequireFromPath' | 'module.Module.enableCompileCache' | 'module.Module.findPackageJSON' | 'module.Module.flushCompileCache' | 'module.Module.getCompileCacheDir' | 'module.Module.getSourceMapsSupport' | 'module.Module.isBuiltin' | 'module.Module.registerHooks' | 'module.Module.register' | 'module.Module.setSourceMapsSupport' | 'module.Module.stripTypeScriptTypes' | 'module.Module.syncBuiltinESMExports' | 'module.Module.findSourceMap' | 'module.Module.SourceMap' | 'net' | 'net.connect' | 'net.createConnection' | 'net.createServer' | 'net.getDefaultAutoSelectFamily' | 'net.setDefaultAutoSelectFamily' | 'net.getDefaultAutoSelectFamilyAttemptTimeout' | 'net.setDefaultAutoSelectFamilyAttemptTimeout' | 'net.isIP' | 'net.isIPv4' | 'net.isIPv6' | 'net.BlockList' | 'net.BlockList.isBlockList' | 'net.SocketAddress' | 'net.SocketAddress.parse' | 'net.Server' | 'net.Socket' | 'os' | 'os.EOL' | 'os.constants' | 'os.constants.priority' | 'os.devNull' | 'os.availableParallelism' | 'os.arch' | 'os.cpus' | 'os.endianness' | 'os.freemem' | 'os.getPriority' | 'os.homedir' | 'os.hostname' | 'os.loadavg' | 'os.machine' | 'os.networkInterfaces' | 'os.platform' | 'os.release' | 'os.setPriority' | 'os.tmpdir' | 'os.totalmem' | 'os.type' | 'os.uptime' | 'os.userInfo' | 'os.version' | 'path' | 'path.posix' | 'path.posix.delimiter' | 'path.posix.sep' | 'path.posix.basename' | 'path.posix.dirname' | 'path.posix.extname' | 'path.posix.format' | 'path.posix.matchesGlob' | 'path.posix.isAbsolute' | 'path.posix.join' | 'path.posix.normalize' | 'path.posix.parse' | 'path.posix.relative' | 'path.posix.resolve' | 'path.posix.toNamespacedPath' | 'path.win32' | 'path.win32.delimiter' | 'path.win32.sep' | 'path.win32.basename' | 'path.win32.dirname' | 'path.win32.extname' | 'path.win32.format' | 'path.win32.matchesGlob' | 'path.win32.isAbsolute' | 'path.win32.join' | 'path.win32.normalize' | 'path.win32.parse' | 'path.win32.relative' | 'path.win32.resolve' | 'path.win32.toNamespacedPath' | 'path.delimiter' | 'path.sep' | 'path.basename' | 'path.dirname' | 'path.extname' | 'path.format' | 'path.matchesGlob' | 'path.isAbsolute' | 'path.join' | 'path.normalize' | 'path.parse' | 'path.relative' | 'path.resolve' | 'path.toNamespacedPath' | 'path/posix' | 'path/posix.delimiter' | 'path/posix.sep' | 'path/posix.basename' | 'path/posix.dirname' | 'path/posix.extname' | 'path/posix.format' | 'path/posix.matchesGlob' | 'path/posix.isAbsolute' | 'path/posix.join' | 'path/posix.normalize' | 'path/posix.parse' | 'path/posix.relative' | 'path/posix.resolve' | 'path/posix.toNamespacedPath' | 'path/win32' | 'path/win32.delimiter' | 'path/win32.sep' | 'path/win32.basename' | 'path/win32.dirname' | 'path/win32.extname' | 'path/win32.format' | 'path/win32.matchesGlob' | 'path/win32.isAbsolute' | 'path/win32.join' | 'path/win32.normalize' | 'path/win32.parse' | 'path/win32.relative' | 'path/win32.resolve' | 'path/win32.toNamespacedPath' | 'perf_hooks' | 'perf_hooks.performance' | 'perf_hooks.performance.clearMarks' | 'perf_hooks.performance.clearMeasures' | 'perf_hooks.performance.clearResourceTimings' | 'perf_hooks.performance.eventLoopUtilization' | 'perf_hooks.performance.getEntries' | 'perf_hooks.performance.getEntriesByName' | 'perf_hooks.performance.getEntriesByType' | 'perf_hooks.performance.mark' | 'perf_hooks.performance.markResourceTiming' | 'perf_hooks.performance.measure' | 'perf_hooks.performance.nodeTiming' | 'perf_hooks.performance.nodeTiming.bootstrapComplete' | 'perf_hooks.performance.nodeTiming.environment' | 'perf_hooks.performance.nodeTiming.idleTime' | 'perf_hooks.performance.nodeTiming.loopExit' | 'perf_hooks.performance.nodeTiming.loopStart' | 'perf_hooks.performance.nodeTiming.nodeStart' | 'perf_hooks.performance.nodeTiming.uvMetricsInfo' | 'perf_hooks.performance.nodeTiming.v8Start' | 'perf_hooks.performance.now' | 'perf_hooks.performance.onresourcetimingbufferfull' | 'perf_hooks.performance.setResourceTimingBufferSize' | 'perf_hooks.performance.timeOrigin' | 'perf_hooks.performance.timerify' | 'perf_hooks.performance.toJSON' | 'perf_hooks.createHistogram' | 'perf_hooks.monitorEventLoopDelay' | 'perf_hooks.PerformanceEntry' | 'perf_hooks.PerformanceMark' | 'perf_hooks.PerformanceMeasure' | 'perf_hooks.PerformanceNodeEntry' | 'perf_hooks.PerformanceNodeTiming' | 'perf_hooks.PerformanceResourceTiming' | 'perf_hooks.PerformanceObserver' | 'perf_hooks.PerformanceObserverEntryList' | 'perf_hooks.Histogram' | 'perf_hooks.IntervalHistogram' | 'perf_hooks.RecordableHistogram' | 'punycode' | 'punycode.ucs2' | 'punycode.version' | 'punycode.decode' | 'punycode.encode' | 'punycode.toASCII' | 'punycode.toUnicode' | 'querystring' | 'querystring.decode' | 'querystring.encode' | 'querystring.escape' | 'querystring.parse' | 'querystring.stringify' | 'querystring.unescape' | 'readline' | 'readline.promises' | 'readline.promises.createInterface' | 'readline.promises.Interface' | 'readline.promises.Readline' | 'readline.clearLine' | 'readline.clearScreenDown' | 'readline.createInterface' | 'readline.cursorTo' | 'readline.moveCursor' | 'readline.Interface' | 'readline.emitKeypressEvents' | 'readline.InterfaceConstructor' | 'readline/promises' | 'readline/promises.createInterface' | 'readline/promises.Interface' | 'readline/promises.Readline' | 'repl' | 'repl.start' | 'repl.writer' | 'repl.REPLServer()' | 'repl.REPLServer' | 'repl.REPL_MODE_MAGIC' | 'repl.REPL_MODE_SLOPPY' | 'repl.REPL_MODE_STRICT' | 'repl.Recoverable()' | 'repl.Recoverable' | 'repl.builtinModules' | 'sea' | 'sea.isSea' | 'sea.getAsset' | 'sea.getAssetAsBlob' | 'sea.getRawAsset' | 'sea.sea.isSea' | 'sea.sea.getAsset' | 'sea.sea.getAssetAsBlob' | 'sea.sea.getRawAsset' | 'stream' | 'stream.promises' | 'stream.promises.pipeline' | 'stream.promises.finished' | 'stream.finished' | 'stream.pipeline' | 'stream.compose' | 'stream.duplexPair' | 'stream.Readable' | 'stream.Readable.from' | 'stream.Readable.isDisturbed' | 'stream.Readable.fromWeb' | 'stream.Readable.toWeb' | 'stream.Writable' | 'stream.Writable.fromWeb' | 'stream.Writable.toWeb' | 'stream.Duplex' | 'stream.Duplex.from' | 'stream.Duplex.fromWeb' | 'stream.Duplex.toWeb' | 'stream.Transform' | 'stream.isErrored' | 'stream.isReadable' | 'stream.addAbortSignal' | 'stream.getDefaultHighWaterMark' | 'stream.setDefaultHighWaterMark' | 'stream/promises.pipeline' | 'stream/promises.finished' | 'stream/web' | 'stream/web.ReadableStream' | 'stream/web.ReadableStream.from' | 'stream/web.ReadableStreamDefaultReader' | 'stream/web.ReadableStreamBYOBReader' | 'stream/web.ReadableStreamDefaultController' | 'stream/web.ReadableByteStreamController' | 'stream/web.ReadableStreamBYOBRequest' | 'stream/web.WritableStream' | 'stream/web.WritableStreamDefaultWriter' | 'stream/web.WritableStreamDefaultController' | 'stream/web.TransformStream' | 'stream/web.TransformStreamDefaultController' | 'stream/web.ByteLengthQueuingStrategy' | 'stream/web.CountQueuingStrategy' | 'stream/web.TextEncoderStream' | 'stream/web.TextDecoderStream' | 'stream/web.CompressionStream' | 'stream/web.DecompressionStream' | 'stream/consumers' | 'stream/consumers.arrayBuffer' | 'stream/consumers.blob' | 'stream/consumers.buffer' | 'stream/consumers.json' | 'stream/consumers.text' | 'string_decoder' | 'string_decoder.StringDecoder' | 'sqlite' | 'sqlite.constants' | 'sqlite.constants.SQLITE_CHANGESET_OMIT' | 'sqlite.constants.SQLITE_CHANGESET_REPLACE' | 'sqlite.constants.SQLITE_CHANGESET_ABORT' | 'sqlite.backup' | 'sqlite.DatabaseSync' | 'sqlite.StatementSync' | 'sqlite.SQLITE_CHANGESET_OMIT' | 'sqlite.SQLITE_CHANGESET_REPLACE' | 'sqlite.SQLITE_CHANGESET_ABORT' | 'test' | 'test.after' | 'test.afterEach' | 'test.assert' | 'test.assert.register' | 'test.before' | 'test.beforeEach' | 'test.describe' | 'test.describe.only' | 'test.describe.skip' | 'test.describe.todo' | 'test.it' | 'test.it.only' | 'test.it.skip' | 'test.it.todo' | 'test.mock' | 'test.mock.fn' | 'test.mock.getter' | 'test.mock.method' | 'test.mock.module' | 'test.mock.reset' | 'test.mock.restoreAll' | 'test.mock.setter' | 'test.mock.timers' | 'test.mock.timers.enable' | 'test.mock.timers.reset' | 'test.mock.timers.tick' | 'test.only' | 'test.run' | 'test.snapshot' | 'test.snapshot.setDefaultSnapshotSerializers' | 'test.snapshot.setResolveSnapshotPath' | 'test.skip' | 'test.suite' | 'test.test' | 'test.test.only' | 'test.test.skip' | 'test.test.todo' | 'test.todo' | 'timers' | 'timers.Immediate' | 'timers.Timeout' | 'timers.setImmediate' | 'timers.clearImmediate' | 'timers.setInterval' | 'timers.clearInterval' | 'timers.setTimeout' | 'timers.clearTimeout' | 'timers.promises' | 'timers.promises.setTimeout' | 'timers.promises.setImmediate' | 'timers.promises.setInterval' | 'timers.promises.scheduler.wait' | 'timers.promises.scheduler.yield' | 'timers/promises' | 'timers/promises.setTimeout' | 'timers/promises.setImmediate' | 'timers/promises.setInterval' | 'timers/promises.scheduler.wait' | 'timers/promises.scheduler.yield' | 'tls' | 'tls.checkServerIdentity' | 'tls.connect' | 'tls.createSecureContext' | 'tls.createSecurePair' | 'tls.createServer' | 'tls.CryptoStream' | 'tls.DEFAULT_CIPHERS' | 'tls.DEFAULT_ECDH_CURVE' | 'tls.DEFAULT_MAX_VERSION' | 'tls.DEFAULT_MIN_VERSION' | 'tls.getCACertificates' | 'tls.getCiphers' | 'tls.rootCertificates' | 'tls.SecureContext' | 'tls.SecurePair' | 'tls.Server' | 'tls.setDefaultCACertificates' | 'tls.TLSSocket' | 'trace_events' | 'trace_events.createTracing' | 'trace_events.getEnabledCategories' | 'tty' | 'tty.isatty' | 'tty.ReadStream' | 'tty.WriteStream' | 'url' | 'url.domainToASCII' | 'url.domainToUnicode' | 'url.fileURLToPath' | 'url.format' | 'url.pathToFileURL' | 'url.urlToHttpOptions' | 'url.URL' | 'url.URL.canParse' | 'url.URL.createObjectURL' | 'url.URL.revokeObjectURL' | 'url.URLPattern' | 'url.URLSearchParams' | 'url.Url' | 'util.promisify' | 'util.promisify.custom' | 'util.callbackify' | 'util.debuglog' | 'util.debug' | 'util.deprecate' | 'util.diff' | 'util.format' | 'util.formatWithOptions' | 'util.getCallSite' | 'util.getCallSites' | 'util.getSystemErrorName' | 'util.getSystemErrorMap' | 'util.getSystemErrorMessage' | 'util.inherits' | 'util.inspect' | 'util.inspect.custom' | 'util.inspect.defaultOptions' | 'util.inspect.replDefaults' | 'util.isDeepStrictEqual' | 'util.parseArgs' | 'util.parseEnv' | 'util.setTraceSigInt' | 'util.stripVTControlCharacters' | 'util.styleText' | 'util.toUSVString' | 'util.transferableAbortController' | 'util.transferableAbortSignal' | 'util.aborted' | 'util.MIMEType' | 'util.MIMEParams' | 'util.TextDecoder' | 'util.TextEncoder' | 'util.types' | 'util.types.isExternal' | 'util.types.isDate' | 'util.types.isArgumentsObject' | 'util.types.isBigIntObject' | 'util.types.isBooleanObject' | 'util.types.isNumberObject' | 'util.types.isStringObject' | 'util.types.isSymbolObject' | 'util.types.isNativeError' | 'util.types.isRegExp' | 'util.types.isAsyncFunction' | 'util.types.isGeneratorFunction' | 'util.types.isGeneratorObject' | 'util.types.isPromise' | 'util.types.isMap' | 'util.types.isSet' | 'util.types.isMapIterator' | 'util.types.isSetIterator' | 'util.types.isWeakMap' | 'util.types.isWeakSet' | 'util.types.isArrayBuffer' | 'util.types.isDataView' | 'util.types.isSharedArrayBuffer' | 'util.types.isProxy' | 'util.types.isModuleNamespaceObject' | 'util.types.isAnyArrayBuffer' | 'util.types.isBoxedPrimitive' | 'util.types.isArrayBufferView' | 'util.types.isTypedArray' | 'util.types.isUint8Array' | 'util.types.isUint8ClampedArray' | 'util.types.isUint16Array' | 'util.types.isUint32Array' | 'util.types.isInt8Array' | 'util.types.isInt16Array' | 'util.types.isInt32Array' | 'util.types.isFloat16Array' | 'util.types.isFloat32Array' | 'util.types.isFloat64Array' | 'util.types.isBigInt64Array' | 'util.types.isBigUint64Array' | 'util.types.isKeyObject' | 'util.types.isCryptoKey' | 'util.types.isWebAssemblyCompiledModule' | 'util._extend' | 'util.isArray' | 'util.isBoolean' | 'util.isBuffer' | 'util.isDate' | 'util.isError' | 'util.isFunction' | 'util.isNull' | 'util.isNullOrUndefined' | 'util.isNumber' | 'util.isObject' | 'util.isPrimitive' | 'util.isRegExp' | 'util.isString' | 'util.isSymbol' | 'util.isUndefined' | 'util.log' | 'util' | 'util/types' | 'util/types.isExternal' | 'util/types.isDate' | 'util/types.isArgumentsObject' | 'util/types.isBigIntObject' | 'util/types.isBooleanObject' | 'util/types.isNumberObject' | 'util/types.isStringObject' | 'util/types.isSymbolObject' | 'util/types.isNativeError' | 'util/types.isRegExp' | 'util/types.isAsyncFunction' | 'util/types.isGeneratorFunction' | 'util/types.isGeneratorObject' | 'util/types.isPromise' | 'util/types.isMap' | 'util/types.isSet' | 'util/types.isMapIterator' | 'util/types.isSetIterator' | 'util/types.isWeakMap' | 'util/types.isWeakSet' | 'util/types.isArrayBuffer' | 'util/types.isDataView' | 'util/types.isSharedArrayBuffer' | 'util/types.isProxy' | 'util/types.isModuleNamespaceObject' | 'util/types.isAnyArrayBuffer' | 'util/types.isBoxedPrimitive' | 'util/types.isArrayBufferView' | 'util/types.isTypedArray' | 'util/types.isUint8Array' | 'util/types.isUint8ClampedArray' | 'util/types.isUint16Array' | 'util/types.isUint32Array' | 'util/types.isInt8Array' | 'util/types.isInt16Array' | 'util/types.isInt32Array' | 'util/types.isFloat16Array' | 'util/types.isFloat32Array' | 'util/types.isFloat64Array' | 'util/types.isBigInt64Array' | 'util/types.isBigUint64Array' | 'util/types.isKeyObject' | 'util/types.isCryptoKey' | 'util/types.isWebAssemblyCompiledModule' | 'v8' | 'v8.serialize' | 'v8.deserialize' | 'v8.Serializer' | 'v8.Deserializer' | 'v8.DefaultSerializer' | 'v8.DefaultDeserializer' | 'v8.promiseHooks' | 'v8.promiseHooks.onInit' | 'v8.promiseHooks.onSettled' | 'v8.promiseHooks.onBefore' | 'v8.promiseHooks.onAfter' | 'v8.promiseHooks.createHook' | 'v8.startupSnapshot' | 'v8.startupSnapshot.addSerializeCallback' | 'v8.startupSnapshot.addDeserializeCallback' | 'v8.startupSnapshot.setDeserializeMainFunction' | 'v8.startupSnapshot.isBuildingSnapshot' | 'v8.cachedDataVersionTag' | 'v8.getHeapCodeStatistics' | 'v8.getHeapSnapshot' | 'v8.getHeapSpaceStatistics' | 'v8.getHeapStatistics' | 'v8.isStringOneByteRepresentation' | 'v8.queryObjects' | 'v8.setFlagsFromString' | 'v8.stopCoverage' | 'v8.takeCoverage' | 'v8.writeHeapSnapshot' | 'v8.setHeapSnapshotNearHeapLimit' | 'v8.GCProfiler' | 'vm.constants' | 'vm.compileFunction' | 'vm.createContext' | 'vm.isContext' | 'vm.measureMemory' | 'vm.runInContext' | 'vm.runInNewContext' | 'vm.runInThisContext' | 'vm.Script' | 'vm.Module' | 'vm.SourceTextModule' | 'vm.SyntheticModule' | 'vm' | 'wasi.WASI' | 'wasi' | 'worker_threads' | 'worker_threads.parentPort' | 'worker_threads.resourceLimits' | 'worker_threads.SHARE_ENV' | 'worker_threads.threadId' | 'worker_threads.workerData' | 'worker_threads.getEnvironmentData' | 'worker_threads.getHeapStatistics' | 'worker_threads.markAsUncloneable' | 'worker_threads.markAsUntransferable' | 'worker_threads.isInternalThread' | 'worker_threads.isMainThread' | 'worker_threads.isMarkedAsUntransferable' | 'worker_threads.moveMessagePortToContext' | 'worker_threads.postMessageToThread' | 'worker_threads.receiveMessageOnPort' | 'worker_threads.setEnvironmentData' | 'worker_threads.BroadcastChannel' | 'worker_threads.MessageChannel' | 'worker_threads.MessagePort' | 'worker_threads.Worker' | 'zlib.brotliCompress' | 'zlib.brotliCompressSync' | 'zlib.brotliDecompress' | 'zlib.brotliDecompressSync' | 'zlib.constants' | 'zlib.constants.ZSTD_e_continue' | 'zlib.constants.ZSTD_e_flush' | 'zlib.constants.ZSTD_e_end' | 'zlib.constants.ZSTD_fast' | 'zlib.constants.ZSTD_dfast' | 'zlib.constants.ZSTD_greedy' | 'zlib.constants.ZSTD_lazy' | 'zlib.constants.ZSTD_lazy2' | 'zlib.constants.ZSTD_btlazy2' | 'zlib.constants.ZSTD_btopt' | 'zlib.constants.ZSTD_btultra' | 'zlib.constants.ZSTD_btultra2' | 'zlib.constants.ZSTD_c_compressionLevel' | 'zlib.constants.ZSTD_c_windowLog' | 'zlib.constants.ZSTD_c_hashLog' | 'zlib.constants.ZSTD_c_chainLog' | 'zlib.constants.ZSTD_c_searchLog' | 'zlib.constants.ZSTD_c_minMatch' | 'zlib.constants.ZSTD_c_targetLength' | 'zlib.constants.ZSTD_c_strategy' | 'zlib.constants.ZSTD_c_enableLongDistanceMatching' | 'zlib.constants.ZSTD_c_ldmHashLog' | 'zlib.constants.ZSTD_c_ldmMinMatch' | 'zlib.constants.ZSTD_c_ldmBucketSizeLog' | 'zlib.constants.ZSTD_c_ldmHashRateLog' | 'zlib.constants.ZSTD_c_contentSizeFlag' | 'zlib.constants.ZSTD_c_checksumFlag' | 'zlib.constants.ZSTD_c_dictIDFlag' | 'zlib.constants.ZSTD_c_nbWorkers' | 'zlib.constants.ZSTD_c_jobSize' | 'zlib.constants.ZSTD_c_overlapLog' | 'zlib.constants.ZSTD_d_windowLogMax' | 'zlib.constants.ZSTD_CLEVEL_DEFAULT' | 'zlib.constants.ZSTD_error_no_error' | 'zlib.constants.ZSTD_error_GENERIC' | 'zlib.constants.ZSTD_error_prefix_unknown' | 'zlib.constants.ZSTD_error_version_unsupported' | 'zlib.constants.ZSTD_error_frameParameter_unsupported' | 'zlib.constants.ZSTD_error_frameParameter_windowTooLarge' | 'zlib.constants.ZSTD_error_corruption_detected' | 'zlib.constants.ZSTD_error_checksum_wrong' | 'zlib.constants.ZSTD_error_literals_headerWrong' | 'zlib.constants.ZSTD_error_dictionary_corrupted' | 'zlib.constants.ZSTD_error_dictionary_wrong' | 'zlib.constants.ZSTD_error_dictionaryCreation_failed' | 'zlib.constants.ZSTD_error_parameter_unsupported' | 'zlib.constants.ZSTD_error_parameter_combination_unsupported' | 'zlib.constants.ZSTD_error_parameter_outOfBound' | 'zlib.constants.ZSTD_error_tableLog_tooLarge' | 'zlib.constants.ZSTD_error_maxSymbolValue_tooLarge' | 'zlib.constants.ZSTD_error_maxSymbolValue_tooSmall' | 'zlib.constants.ZSTD_error_stabilityCondition_notRespected' | 'zlib.constants.ZSTD_error_stage_wrong' | 'zlib.constants.ZSTD_error_init_missing' | 'zlib.constants.ZSTD_error_memory_allocation' | 'zlib.constants.ZSTD_error_workSpace_tooSmall' | 'zlib.constants.ZSTD_error_dstSize_tooSmall' | 'zlib.constants.ZSTD_error_srcSize_wrong' | 'zlib.constants.ZSTD_error_dstBuffer_null' | 'zlib.constants.ZSTD_error_noForwardProgress_destFull' | 'zlib.constants.ZSTD_error_noForwardProgress_inputEmpty' | 'zlib.crc32' | 'zlib.createBrotliCompress' | 'zlib.createBrotliDecompress' | 'zlib.createDeflate' | 'zlib.createDeflateRaw' | 'zlib.createGunzip' | 'zlib.createGzip' | 'zlib.createInflate' | 'zlib.createInflateRaw' | 'zlib.createUnzip' | 'zlib.createZstdCompress' | 'zlib.createZstdDecompress' | 'zlib.deflate' | 'zlib.deflateRaw' | 'zlib.deflateRawSync' | 'zlib.deflateSync' | 'zlib.gunzip' | 'zlib.gunzipSync' | 'zlib.gzip' | 'zlib.gzipSync' | 'zlib.inflate' | 'zlib.inflateRaw' | 'zlib.inflateRawSync' | 'zlib.inflateSync' | 'zlib.unzip' | 'zlib.unzipSync' | 'zlib.zstdCompress' | 'zlib.zstdCompressSync' | 'zlib.zstdDecompress' | 'zlib.zstdDecompressSync' | 'zlib.BrotliCompress()' | 'zlib.BrotliCompress' | 'zlib.BrotliDecompress()' | 'zlib.BrotliDecompress' | 'zlib.Deflate()' | 'zlib.Deflate' | 'zlib.DeflateRaw()' | 'zlib.DeflateRaw' | 'zlib.Gunzip()' | 'zlib.Gunzip' | 'zlib.Gzip()' | 'zlib.Gzip' | 'zlib.Inflate()' | 'zlib.Inflate' | 'zlib.InflateRaw()' | 'zlib.InflateRaw' | 'zlib.Unzip()' | 'zlib.Unzip' | 'zlib.ZstdCompress' | 'zlib.ZstdDecompress' | 'zlib.ZstdOptions' | 'zlib' | 'import.meta.resolve' | 'import.meta.dirname' | 'import.meta.filename' | 'import.meta.main')[];
12820
+ ignores?: ('__filename' | '__dirname' | 'require' | 'require.cache' | 'require.extensions' | 'require.main' | 'require.resolve' | 'require.resolve.paths' | 'module' | 'module.children' | 'module.exports' | 'module.filename' | 'module.id' | 'module.isPreloading' | 'module.loaded' | 'module.parent' | 'module.path' | 'module.paths' | 'module.require' | 'exports' | 'AbortController' | 'AbortSignal' | 'AbortSignal.abort' | 'AbortSignal.timeout' | 'AbortSignal.any' | 'DOMException' | 'FormData' | 'Headers' | 'MessageEvent' | 'Navigator' | 'Request' | 'Response' | 'WebAssembly' | 'WebSocket' | 'fetch' | 'global' | 'queueMicrotask' | 'navigator' | 'navigator.hardwareConcurrency' | 'navigator.language' | 'navigator.languages' | 'navigator.locks' | 'navigator.locks.request' | 'navigator.locks.query' | 'navigator.platform' | 'navigator.userAgent' | 'structuredClone' | 'localStorage' | 'sessionStorage' | 'Storage' | 'Blob' | 'new Buffer()' | 'Buffer' | 'Buffer.alloc' | 'Buffer.allocUnsafe' | 'Buffer.allocUnsafeSlow' | 'Buffer.byteLength' | 'Buffer.compare' | 'Buffer.concat' | 'Buffer.copyBytesFrom' | 'Buffer.from' | 'Buffer.isBuffer' | 'Buffer.isEncoding' | 'File' | 'atob' | 'btoa' | 'console' | 'console.profile' | 'console.profileEnd' | 'console.timeStamp' | 'console.Console' | 'console.assert' | 'console.clear' | 'console.count' | 'console.countReset' | 'console.debug' | 'console.dir' | 'console.dirxml' | 'console.error' | 'console.group' | 'console.groupCollapsed' | 'console.groupEnd' | 'console.info' | 'console.log' | 'console.table' | 'console.time' | 'console.timeEnd' | 'console.timeLog' | 'console.trace' | 'console.warn' | 'crypto' | 'crypto.subtle' | 'crypto.subtle.decapsulateBits' | 'crypto.subtle.decapsulateKey' | 'crypto.subtle.decrypt' | 'crypto.subtle.deriveBits' | 'crypto.subtle.deriveKey' | 'crypto.subtle.digest' | 'crypto.subtle.encapsulateBits' | 'crypto.subtle.encapsulateKey' | 'crypto.subtle.encrypt' | 'crypto.subtle.exportKey' | 'crypto.subtle.generateKey' | 'crypto.subtle.getPublicKey' | 'crypto.subtle.importKey' | 'crypto.subtle.sign' | 'crypto.subtle.unwrapKey' | 'crypto.subtle.verify' | 'crypto.subtle.wrapKey' | 'crypto.getRandomValues' | 'crypto.randomUUID' | 'Crypto' | 'CryptoKey' | 'SubtleCrypto' | 'SubtleCrypto.supports' | 'CloseEvent' | 'CustomEvent' | 'Event' | 'EventSource' | 'EventTarget' | 'PerformanceEntry' | 'PerformanceMark' | 'PerformanceMeasure' | 'PerformanceObserver' | 'PerformanceObserverEntryList' | 'PerformanceResourceTiming' | 'performance' | 'performance.clearMarks' | 'performance.clearMeasures' | 'performance.clearResourceTimings' | 'performance.eventLoopUtilization' | 'performance.getEntries' | 'performance.getEntriesByName' | 'performance.getEntriesByType' | 'performance.mark' | 'performance.markResourceTiming' | 'performance.measure' | 'performance.nodeTiming' | 'performance.nodeTiming.bootstrapComplete' | 'performance.nodeTiming.environment' | 'performance.nodeTiming.idleTime' | 'performance.nodeTiming.loopExit' | 'performance.nodeTiming.loopStart' | 'performance.nodeTiming.nodeStart' | 'performance.nodeTiming.uvMetricsInfo' | 'performance.nodeTiming.v8Start' | 'performance.now' | 'performance.onresourcetimingbufferfull' | 'performance.setResourceTimingBufferSize' | 'performance.timeOrigin' | 'performance.timerify' | 'performance.toJSON' | 'process' | 'process.allowedNodeEnvironmentFlags' | 'process.availableMemory' | 'process.arch' | 'process.argv' | 'process.argv0' | 'process.channel' | 'process.config' | 'process.connected' | 'process.debugPort' | 'process.env' | 'process.execArgv' | 'process.execPath' | 'process.execve' | 'process.exitCode' | 'process.features.cached_builtins' | 'process.features.debug' | 'process.features.inspector' | 'process.features.ipv6' | 'process.features.require_module' | 'process.features.tls' | 'process.features.tls_alpn' | 'process.features.tls_ocsp' | 'process.features.tls_sni' | 'process.features.typescript' | 'process.features.uv' | 'process.finalization.register' | 'process.finalization.registerBeforeExit' | 'process.finalization.unregister' | 'process.getBuiltinModule' | 'process.mainModule' | 'process.noDeprecation' | 'process.permission' | 'process.pid' | 'process.platform' | 'process.ppid' | 'process.ref' | 'process.release' | 'process.report' | 'process.report.excludeEnv' | 'process.sourceMapsEnabled' | 'process.stdin' | 'process.stdin.isRaw' | 'process.stdin.isTTY' | 'process.stdin.setRawMode' | 'process.stdout' | 'process.stdout.clearLine' | 'process.stdout.clearScreenDown' | 'process.stdout.columns' | 'process.stdout.cursorTo' | 'process.stdout.getColorDepth' | 'process.stdout.getWindowSize' | 'process.stdout.hasColors' | 'process.stdout.isTTY' | 'process.stdout.moveCursor' | 'process.stdout.rows' | 'process.stderr' | 'process.stderr.clearLine' | 'process.stderr.clearScreenDown' | 'process.stderr.columns' | 'process.stderr.cursorTo' | 'process.stderr.getColorDepth' | 'process.stderr.getWindowSize' | 'process.stderr.hasColors' | 'process.stderr.isTTY' | 'process.stderr.moveCursor' | 'process.stderr.rows' | 'process.threadCpuUsage' | 'process.throwDeprecation' | 'process.title' | 'process.traceDeprecation' | 'process.version' | 'process.versions' | 'process.abort' | 'process.chdir' | 'process.constrainedMemory' | 'process.cpuUsage' | 'process.cwd' | 'process.disconnect' | 'process.dlopen' | 'process.emitWarning' | 'process.exit' | 'process.getActiveResourcesInfo' | 'process.getegid' | 'process.geteuid' | 'process.getgid' | 'process.getgroups' | 'process.getuid' | 'process.hasUncaughtExceptionCaptureCallback' | 'process.hrtime' | 'process.hrtime.bigint' | 'process.initgroups' | 'process.kill' | 'process.loadEnvFile' | 'process.memoryUsage' | 'process.rss' | 'process.nextTick' | 'process.resourceUsage' | 'process.send' | 'process.setegid' | 'process.seteuid' | 'process.setgid' | 'process.setgroups' | 'process.setuid' | 'process.setSourceMapsEnabled' | 'process.setUncaughtExceptionCaptureCallback' | 'process.umask' | 'process.unref' | 'process.uptime' | 'ReadableStream' | 'ReadableStream.from' | 'ReadableStreamDefaultReader' | 'ReadableStreamBYOBReader' | 'ReadableStreamDefaultController' | 'ReadableByteStreamController' | 'ReadableStreamBYOBRequest' | 'WritableStream' | 'WritableStreamDefaultWriter' | 'WritableStreamDefaultController' | 'TransformStream' | 'TransformStreamDefaultController' | 'ByteLengthQueuingStrategy' | 'CountQueuingStrategy' | 'TextEncoderStream' | 'TextDecoderStream' | 'CompressionStream' | 'DecompressionStream' | 'setInterval' | 'clearInterval' | 'setTimeout' | 'clearTimeout' | 'setImmediate' | 'clearImmediate' | 'URL' | 'URL.canParse' | 'URL.createObjectURL' | 'URL.revokeObjectURL' | 'URLSearchParams' | 'TextDecoder' | 'TextEncoder' | 'BroadcastChannel' | 'MessageChannel' | 'MessagePort' | 'assert' | 'assert.Assert' | 'assert.assert' | 'assert.deepEqual' | 'assert.deepStrictEqual' | 'assert.doesNotMatch' | 'assert.doesNotReject' | 'assert.doesNotThrow' | 'assert.equal' | 'assert.fail' | 'assert.ifError' | 'assert.match' | 'assert.notDeepEqual' | 'assert.notDeepStrictEqual' | 'assert.notEqual' | 'assert.notStrictEqual' | 'assert.ok' | 'assert.partialDeepStrictEqual' | 'assert.rejects' | 'assert.strictEqual' | 'assert.throws' | 'assert.CallTracker' | 'assert.strict' | 'assert.strict.Assert' | 'assert.strict.assert' | 'assert.strict.deepEqual' | 'assert.strict.deepStrictEqual' | 'assert.strict.doesNotMatch' | 'assert.strict.doesNotReject' | 'assert.strict.doesNotThrow' | 'assert.strict.equal' | 'assert.strict.fail' | 'assert.strict.ifError' | 'assert.strict.match' | 'assert.strict.notDeepEqual' | 'assert.strict.notDeepStrictEqual' | 'assert.strict.notEqual' | 'assert.strict.notStrictEqual' | 'assert.strict.ok' | 'assert.strict.partialDeepStrictEqual' | 'assert.strict.rejects' | 'assert.strict.strictEqual' | 'assert.strict.throws' | 'assert.strict.CallTracker' | 'assert/strict' | 'assert/strict.Assert' | 'assert/strict.assert' | 'assert/strict.deepEqual' | 'assert/strict.deepStrictEqual' | 'assert/strict.doesNotMatch' | 'assert/strict.doesNotReject' | 'assert/strict.doesNotThrow' | 'assert/strict.equal' | 'assert/strict.fail' | 'assert/strict.ifError' | 'assert/strict.match' | 'assert/strict.notDeepEqual' | 'assert/strict.notDeepStrictEqual' | 'assert/strict.notEqual' | 'assert/strict.notStrictEqual' | 'assert/strict.ok' | 'assert/strict.partialDeepStrictEqual' | 'assert/strict.rejects' | 'assert/strict.strictEqual' | 'assert/strict.throws' | 'assert/strict.CallTracker' | 'async_hooks' | 'async_hooks.createHook' | 'async_hooks.executionAsyncResource' | 'async_hooks.executionAsyncId' | 'async_hooks.triggerAsyncId' | 'async_hooks.AsyncLocalStorage' | 'async_hooks.AsyncLocalStorage.bind' | 'async_hooks.AsyncLocalStorage.snapshot' | 'async_hooks.AsyncResource' | 'async_hooks.AsyncResource.bind' | 'buffer' | 'buffer.constants' | 'buffer.INSPECT_MAX_BYTES' | 'buffer.kMaxLength' | 'buffer.kStringMaxLength' | 'buffer.atob' | 'buffer.btoa' | 'buffer.isAscii' | 'buffer.isUtf8' | 'buffer.resolveObjectURL' | 'buffer.transcode' | 'buffer.SlowBuffer' | 'buffer.Blob' | 'new buffer.Buffer()' | 'buffer.Buffer' | 'buffer.Buffer.alloc' | 'buffer.Buffer.allocUnsafe' | 'buffer.Buffer.allocUnsafeSlow' | 'buffer.Buffer.byteLength' | 'buffer.Buffer.compare' | 'buffer.Buffer.concat' | 'buffer.Buffer.copyBytesFrom' | 'buffer.Buffer.from' | 'buffer.Buffer.isBuffer' | 'buffer.Buffer.isEncoding' | 'buffer.File' | 'child_process' | 'child_process.exec' | 'child_process.execFile' | 'child_process.fork' | 'child_process.spawn' | 'child_process.execFileSync' | 'child_process.execSync' | 'child_process.spawnSync' | 'child_process.ChildProcess' | 'cluster' | 'cluster.isMaster' | 'cluster.isPrimary' | 'cluster.isWorker' | 'cluster.schedulingPolicy' | 'cluster.settings' | 'cluster.worker' | 'cluster.workers' | 'cluster.disconnect' | 'cluster.fork' | 'cluster.setupMaster' | 'cluster.setupPrimary' | 'cluster.Worker' | 'crypto.constants' | 'crypto.fips' | 'crypto.webcrypto' | 'crypto.webcrypto.subtle' | 'crypto.webcrypto.subtle.decapsulateBits' | 'crypto.webcrypto.subtle.decapsulateKey' | 'crypto.webcrypto.subtle.decrypt' | 'crypto.webcrypto.subtle.deriveBits' | 'crypto.webcrypto.subtle.deriveKey' | 'crypto.webcrypto.subtle.digest' | 'crypto.webcrypto.subtle.encapsulateBits' | 'crypto.webcrypto.subtle.encapsulateKey' | 'crypto.webcrypto.subtle.encrypt' | 'crypto.webcrypto.subtle.exportKey' | 'crypto.webcrypto.subtle.generateKey' | 'crypto.webcrypto.subtle.getPublicKey' | 'crypto.webcrypto.subtle.importKey' | 'crypto.webcrypto.subtle.sign' | 'crypto.webcrypto.subtle.unwrapKey' | 'crypto.webcrypto.subtle.verify' | 'crypto.webcrypto.subtle.wrapKey' | 'crypto.webcrypto.getRandomValues' | 'crypto.webcrypto.randomUUID' | 'crypto.argon2' | 'crypto.argon2Sync' | 'crypto.checkPrime' | 'crypto.checkPrimeSync' | 'crypto.createCipher' | 'crypto.createCipheriv' | 'crypto.createDecipher' | 'crypto.createDecipheriv' | 'crypto.createDiffieHellman' | 'crypto.createDiffieHellmanGroup' | 'crypto.createECDH' | 'crypto.createHash' | 'crypto.createHmac' | 'crypto.createPrivateKey' | 'crypto.createPublicKey' | 'crypto.createSecretKey' | 'crypto.createSign' | 'crypto.createVerify' | 'crypto.decapsulate' | 'crypto.diffieHellman' | 'crypto.encapsulate' | 'crypto.generateKey' | 'crypto.generateKeyPair' | 'crypto.generateKeyPairSync' | 'crypto.generateKeySync' | 'crypto.generatePrime' | 'crypto.generatePrimeSync' | 'crypto.getCipherInfo' | 'crypto.getCiphers' | 'crypto.getCurves' | 'crypto.getDiffieHellman' | 'crypto.getFips' | 'crypto.getHashes' | 'crypto.hash' | 'crypto.hkdf' | 'crypto.hkdfSync' | 'crypto.pbkdf2' | 'crypto.pbkdf2Sync' | 'crypto.privateDecrypt' | 'crypto.privateEncrypt' | 'crypto.publicDecrypt' | 'crypto.publicEncrypt' | 'crypto.randomBytes' | 'crypto.randomFillSync' | 'crypto.randomFill' | 'crypto.randomInt' | 'crypto.scrypt' | 'crypto.scryptSync' | 'crypto.secureHeapUsed' | 'crypto.setEngine' | 'crypto.setFips' | 'crypto.sign' | 'crypto.timingSafeEqual' | 'crypto.verify' | 'crypto.Certificate' | 'crypto.Certificate.exportChallenge' | 'crypto.Certificate.exportPublicKey' | 'crypto.Certificate.verifySpkac' | 'crypto.Cipher' | 'crypto.Decipher' | 'crypto.DiffieHellman' | 'crypto.DiffieHellmanGroup' | 'crypto.ECDH' | 'crypto.ECDH.convertKey' | 'crypto.Hash()' | 'new crypto.Hash()' | 'crypto.Hash' | 'crypto.Hmac()' | 'new crypto.Hmac()' | 'crypto.Hmac' | 'crypto.KeyObject' | 'crypto.KeyObject.from' | 'crypto.Sign' | 'crypto.Verify' | 'crypto.X509Certificate' | 'dgram' | 'dgram.createSocket' | 'dgram.Socket' | 'diagnostics_channel' | 'diagnostics_channel.hasSubscribers' | 'diagnostics_channel.channel' | 'diagnostics_channel.subscribe' | 'diagnostics_channel.unsubscribe' | 'diagnostics_channel.tracingChannel' | 'diagnostics_channel.Channel' | 'diagnostics_channel.TracingChannel' | 'dns' | 'dns.Resolver' | 'dns.getServers' | 'dns.lookup' | 'dns.lookupService' | 'dns.resolve' | 'dns.resolve4' | 'dns.resolve6' | 'dns.resolveAny' | 'dns.resolveCname' | 'dns.resolveCaa' | 'dns.resolveMx' | 'dns.resolveNaptr' | 'dns.resolveNs' | 'dns.resolvePtr' | 'dns.resolveSoa' | 'dns.resolveSrv' | 'dns.resolveTlsa' | 'dns.resolveTxt' | 'dns.reverse' | 'dns.setDefaultResultOrder' | 'dns.getDefaultResultOrder' | 'dns.setServers' | 'dns.promises' | 'dns.promises.Resolver' | 'dns.promises.cancel' | 'dns.promises.getServers' | 'dns.promises.lookup' | 'dns.promises.lookupService' | 'dns.promises.resolve' | 'dns.promises.resolve4' | 'dns.promises.resolve6' | 'dns.promises.resolveAny' | 'dns.promises.resolveCaa' | 'dns.promises.resolveCname' | 'dns.promises.resolveMx' | 'dns.promises.resolveNaptr' | 'dns.promises.resolveNs' | 'dns.promises.resolvePtr' | 'dns.promises.resolveSoa' | 'dns.promises.resolveSrv' | 'dns.promises.resolveTlsa' | 'dns.promises.resolveTxt' | 'dns.promises.reverse' | 'dns.promises.setDefaultResultOrder' | 'dns.promises.getDefaultResultOrder' | 'dns.promises.setServers' | 'dns/promises' | 'dns/promises.Resolver' | 'dns/promises.cancel' | 'dns/promises.getServers' | 'dns/promises.lookup' | 'dns/promises.lookupService' | 'dns/promises.resolve' | 'dns/promises.resolve4' | 'dns/promises.resolve6' | 'dns/promises.resolveAny' | 'dns/promises.resolveCaa' | 'dns/promises.resolveCname' | 'dns/promises.resolveMx' | 'dns/promises.resolveNaptr' | 'dns/promises.resolveNs' | 'dns/promises.resolvePtr' | 'dns/promises.resolveSoa' | 'dns/promises.resolveSrv' | 'dns/promises.resolveTlsa' | 'dns/promises.resolveTxt' | 'dns/promises.reverse' | 'dns/promises.setDefaultResultOrder' | 'dns/promises.getDefaultResultOrder' | 'dns/promises.setServers' | 'domain' | 'domain.create' | 'domain.Domain' | 'events' | 'events.Event' | 'events.EventTarget' | 'events.CustomEvent' | 'events.NodeEventTarget' | 'events.EventEmitter' | 'events.EventEmitter.defaultMaxListeners' | 'events.EventEmitter.errorMonitor' | 'events.EventEmitter.captureRejections' | 'events.EventEmitter.captureRejectionSymbol' | 'events.EventEmitter.getEventListeners' | 'events.EventEmitter.getMaxListeners' | 'events.EventEmitter.once' | 'events.EventEmitter.listenerCount' | 'events.EventEmitter.on' | 'events.EventEmitter.setMaxListeners' | 'events.EventEmitter.addAbortListener' | 'events.EventEmitterAsyncResource' | 'events.EventEmitterAsyncResource.defaultMaxListeners' | 'events.EventEmitterAsyncResource.errorMonitor' | 'events.EventEmitterAsyncResource.captureRejections' | 'events.EventEmitterAsyncResource.captureRejectionSymbol' | 'events.EventEmitterAsyncResource.getEventListeners' | 'events.EventEmitterAsyncResource.getMaxListeners' | 'events.EventEmitterAsyncResource.once' | 'events.EventEmitterAsyncResource.listenerCount' | 'events.EventEmitterAsyncResource.on' | 'events.EventEmitterAsyncResource.setMaxListeners' | 'events.EventEmitterAsyncResource.addAbortListener' | 'events.defaultMaxListeners' | 'events.errorMonitor' | 'events.captureRejections' | 'events.captureRejectionSymbol' | 'events.getEventListeners' | 'events.getMaxListeners' | 'events.once' | 'events.listenerCount' | 'events.on' | 'events.setMaxListeners' | 'events.addAbortListener' | 'fs' | 'fs.promises' | 'fs.promises.FileHandle' | 'fs.promises.access' | 'fs.promises.appendFile' | 'fs.promises.chmod' | 'fs.promises.chown' | 'fs.promises.constants' | 'fs.promises.copyFile' | 'fs.promises.cp' | 'fs.promises.glob' | 'fs.promises.lchmod' | 'fs.promises.lchown' | 'fs.promises.link' | 'fs.promises.lstat' | 'fs.promises.lutimes' | 'fs.promises.mkdir' | 'fs.promises.mkdtemp' | 'fs.promises.mkdtempDisposable' | 'fs.promises.open' | 'fs.promises.opendir' | 'fs.promises.readFile' | 'fs.promises.readdir' | 'fs.promises.readlink' | 'fs.promises.realpath' | 'fs.promises.rename' | 'fs.promises.rm' | 'fs.promises.rmdir' | 'fs.promises.stat' | 'fs.promises.statfs' | 'fs.promises.symlink' | 'fs.promises.truncate' | 'fs.promises.unlink' | 'fs.promises.utimes' | 'fs.promises.watch' | 'fs.promises.writeFile' | 'fs.access' | 'fs.appendFile' | 'fs.chmod' | 'fs.chown' | 'fs.close' | 'fs.copyFile' | 'fs.cp' | 'fs.createReadStream' | 'fs.createWriteStream' | 'fs.exists' | 'fs.fchmod' | 'fs.fchown' | 'fs.fdatasync' | 'fs.fstat' | 'fs.fsync' | 'fs.ftruncate' | 'fs.futimes' | 'fs.glob' | 'fs.lchmod' | 'fs.lchown' | 'fs.link' | 'fs.lstat' | 'fs.lutimes' | 'fs.mkdir' | 'fs.mkdtemp' | 'fs.native' | 'fs.open' | 'fs.openAsBlob' | 'fs.opendir' | 'fs.read' | 'fs.readdir' | 'fs.readFile' | 'fs.readlink' | 'fs.readv' | 'fs.realpath' | 'fs.realpath.native' | 'fs.rename' | 'fs.rm' | 'fs.rmdir' | 'fs.stat' | 'fs.statfs' | 'fs.symlink' | 'fs.truncate' | 'fs.unlink' | 'fs.unwatchFile' | 'fs.utimes' | 'fs.watch' | 'fs.watchFile' | 'fs.write' | 'fs.writeFile' | 'fs.writev' | 'fs.accessSync' | 'fs.appendFileSync' | 'fs.chmodSync' | 'fs.chownSync' | 'fs.closeSync' | 'fs.copyFileSync' | 'fs.cpSync' | 'fs.existsSync' | 'fs.fchmodSync' | 'fs.fchownSync' | 'fs.fdatasyncSync' | 'fs.fstatSync' | 'fs.fsyncSync' | 'fs.ftruncateSync' | 'fs.futimesSync' | 'fs.globSync' | 'fs.lchmodSync' | 'fs.lchownSync' | 'fs.linkSync' | 'fs.lstatSync' | 'fs.lutimesSync' | 'fs.mkdirSync' | 'fs.mkdtempSync' | 'fs.mkdtempDisposableSync' | 'fs.opendirSync' | 'fs.openSync' | 'fs.readdirSync' | 'fs.readFileSync' | 'fs.readlinkSync' | 'fs.readSync' | 'fs.readvSync' | 'fs.realpathSync' | 'fs.realpathSync.native' | 'fs.renameSync' | 'fs.rmdirSync' | 'fs.rmSync' | 'fs.statfsSync' | 'fs.statSync' | 'fs.symlinkSync' | 'fs.truncateSync' | 'fs.unlinkSync' | 'fs.utimesSync' | 'fs.writeFileSync' | 'fs.writeSync' | 'fs.writevSync' | 'fs.constants' | 'fs.Dir' | 'fs.Dirent' | 'fs.FSWatcher' | 'fs.StatWatcher' | 'fs.ReadStream' | 'fs.Stats()' | 'new fs.Stats()' | 'fs.Stats' | 'fs.StatFs' | 'fs.WriteStream' | 'fs.Utf8Stream' | 'fs.common_objects' | 'fs/promises' | 'fs/promises.FileHandle' | 'fs/promises.access' | 'fs/promises.appendFile' | 'fs/promises.chmod' | 'fs/promises.chown' | 'fs/promises.constants' | 'fs/promises.copyFile' | 'fs/promises.cp' | 'fs/promises.glob' | 'fs/promises.lchmod' | 'fs/promises.lchown' | 'fs/promises.link' | 'fs/promises.lstat' | 'fs/promises.lutimes' | 'fs/promises.mkdir' | 'fs/promises.mkdtemp' | 'fs/promises.mkdtempDisposable' | 'fs/promises.open' | 'fs/promises.opendir' | 'fs/promises.readFile' | 'fs/promises.readdir' | 'fs/promises.readlink' | 'fs/promises.realpath' | 'fs/promises.rename' | 'fs/promises.rm' | 'fs/promises.rmdir' | 'fs/promises.stat' | 'fs/promises.statfs' | 'fs/promises.symlink' | 'fs/promises.truncate' | 'fs/promises.unlink' | 'fs/promises.utimes' | 'fs/promises.watch' | 'fs/promises.writeFile' | 'http2' | 'http2.constants' | 'http2.sensitiveHeaders' | 'http2.createServer' | 'http2.createSecureServer' | 'http2.connect' | 'http2.getDefaultSettings' | 'http2.getPackedSettings' | 'http2.getUnpackedSettings' | 'http2.performServerHandshake' | 'http2.Http2Session' | 'http2.ServerHttp2Session' | 'http2.ClientHttp2Session' | 'http2.Http2Stream' | 'http2.ClientHttp2Stream' | 'http2.ServerHttp2Stream' | 'http2.Http2Server' | 'http2.Http2SecureServer' | 'http2.Http2ServerRequest' | 'http2.Http2ServerResponse' | 'http' | 'http.METHODS' | 'http.STATUS_CODES' | 'http.globalAgent' | 'http.maxHeaderSize' | 'http.createServer' | 'http.get' | 'http.request' | 'http.validateHeaderName' | 'http.validateHeaderValue' | 'http.setMaxIdleHTTPParsers' | 'http.Agent()' | 'http.Agent' | 'http.ClientRequest()' | 'http.ClientRequest' | 'http.Server()' | 'http.Server' | 'http.ServerResponse()' | 'http.ServerResponse' | 'http.IncomingMessage()' | 'http.IncomingMessage' | 'http.OutgoingMessage()' | 'http.OutgoingMessage' | 'http.WebSocket()' | 'http.WebSocket' | '_http_agent' | '_http_client' | '_http_common' | '_http_incoming' | '_http_outgoing' | '_http_server' | 'https' | 'https.globalAgent' | 'https.createServer' | 'https.get' | 'https.request' | 'https.Agent' | 'https.Server' | 'inspector' | 'inspector.Session' | 'inspector.Network.dataReceived' | 'inspector.Network.dataSent' | 'inspector.Network.loadingFailed' | 'inspector.Network.loadingFinished' | 'inspector.Network.requestWillBeSent' | 'inspector.Network.responseReceived' | 'inspector.Network.webSocketCreated' | 'inspector.Network.webSocketHandshakeResponseReceived' | 'inspector.Network.webSocketClosed' | 'inspector.NetworkResources.put' | 'inspector.console' | 'inspector.close' | 'inspector.open' | 'inspector.url' | 'inspector.waitForDebugger' | 'inspector/promises' | 'inspector/promises.Session' | 'inspector/promises.Network.dataReceived' | 'inspector/promises.Network.dataSent' | 'inspector/promises.Network.loadingFailed' | 'inspector/promises.Network.loadingFinished' | 'inspector/promises.Network.requestWillBeSent' | 'inspector/promises.Network.responseReceived' | 'inspector/promises.Network.webSocketCreated' | 'inspector/promises.Network.webSocketHandshakeResponseReceived' | 'inspector/promises.Network.webSocketClosed' | 'inspector/promises.NetworkResources.put' | 'inspector/promises.console' | 'inspector/promises.close' | 'inspector/promises.open' | 'inspector/promises.url' | 'inspector/promises.waitForDebugger' | 'module.builtinModules' | 'module.constants.compileCacheStatus' | 'module.createRequire' | 'module.createRequireFromPath' | 'module.enableCompileCache' | 'module.findPackageJSON' | 'module.flushCompileCache' | 'module.getCompileCacheDir' | 'module.getSourceMapsSupport' | 'module.isBuiltin' | 'module.registerHooks' | 'module.register' | 'module.setSourceMapsSupport' | 'module.stripTypeScriptTypes' | 'module.syncBuiltinESMExports' | 'module.findSourceMap' | 'module.SourceMap' | 'module.Module.builtinModules' | 'module.Module.createRequire' | 'module.Module.createRequireFromPath' | 'module.Module.enableCompileCache' | 'module.Module.findPackageJSON' | 'module.Module.flushCompileCache' | 'module.Module.getCompileCacheDir' | 'module.Module.getSourceMapsSupport' | 'module.Module.isBuiltin' | 'module.Module.registerHooks' | 'module.Module.register' | 'module.Module.setSourceMapsSupport' | 'module.Module.stripTypeScriptTypes' | 'module.Module.syncBuiltinESMExports' | 'module.Module.findSourceMap' | 'module.Module.SourceMap' | 'net' | 'net.connect' | 'net.createConnection' | 'net.createServer' | 'net.getDefaultAutoSelectFamily' | 'net.setDefaultAutoSelectFamily' | 'net.getDefaultAutoSelectFamilyAttemptTimeout' | 'net.setDefaultAutoSelectFamilyAttemptTimeout' | 'net.isIP' | 'net.isIPv4' | 'net.isIPv6' | 'net.BlockList' | 'net.BlockList.isBlockList' | 'net.SocketAddress' | 'net.SocketAddress.parse' | 'net.Server' | 'net.Socket' | 'os' | 'os.EOL' | 'os.constants' | 'os.constants.priority' | 'os.devNull' | 'os.availableParallelism' | 'os.arch' | 'os.cpus' | 'os.endianness' | 'os.freemem' | 'os.getPriority' | 'os.homedir' | 'os.hostname' | 'os.loadavg' | 'os.machine' | 'os.networkInterfaces' | 'os.platform' | 'os.release' | 'os.setPriority' | 'os.tmpdir' | 'os.totalmem' | 'os.type' | 'os.uptime' | 'os.userInfo' | 'os.version' | 'path' | 'path.posix' | 'path.posix.delimiter' | 'path.posix.sep' | 'path.posix.basename' | 'path.posix.dirname' | 'path.posix.extname' | 'path.posix.format' | 'path.posix.matchesGlob' | 'path.posix.isAbsolute' | 'path.posix.join' | 'path.posix.normalize' | 'path.posix.parse' | 'path.posix.relative' | 'path.posix.resolve' | 'path.posix.toNamespacedPath' | 'path.win32' | 'path.win32.delimiter' | 'path.win32.sep' | 'path.win32.basename' | 'path.win32.dirname' | 'path.win32.extname' | 'path.win32.format' | 'path.win32.matchesGlob' | 'path.win32.isAbsolute' | 'path.win32.join' | 'path.win32.normalize' | 'path.win32.parse' | 'path.win32.relative' | 'path.win32.resolve' | 'path.win32.toNamespacedPath' | 'path.delimiter' | 'path.sep' | 'path.basename' | 'path.dirname' | 'path.extname' | 'path.format' | 'path.matchesGlob' | 'path.isAbsolute' | 'path.join' | 'path.normalize' | 'path.parse' | 'path.relative' | 'path.resolve' | 'path.toNamespacedPath' | 'path/posix' | 'path/posix.delimiter' | 'path/posix.sep' | 'path/posix.basename' | 'path/posix.dirname' | 'path/posix.extname' | 'path/posix.format' | 'path/posix.matchesGlob' | 'path/posix.isAbsolute' | 'path/posix.join' | 'path/posix.normalize' | 'path/posix.parse' | 'path/posix.relative' | 'path/posix.resolve' | 'path/posix.toNamespacedPath' | 'path/win32' | 'path/win32.delimiter' | 'path/win32.sep' | 'path/win32.basename' | 'path/win32.dirname' | 'path/win32.extname' | 'path/win32.format' | 'path/win32.matchesGlob' | 'path/win32.isAbsolute' | 'path/win32.join' | 'path/win32.normalize' | 'path/win32.parse' | 'path/win32.relative' | 'path/win32.resolve' | 'path/win32.toNamespacedPath' | 'perf_hooks' | 'perf_hooks.performance' | 'perf_hooks.performance.clearMarks' | 'perf_hooks.performance.clearMeasures' | 'perf_hooks.performance.clearResourceTimings' | 'perf_hooks.performance.eventLoopUtilization' | 'perf_hooks.performance.getEntries' | 'perf_hooks.performance.getEntriesByName' | 'perf_hooks.performance.getEntriesByType' | 'perf_hooks.performance.mark' | 'perf_hooks.performance.markResourceTiming' | 'perf_hooks.performance.measure' | 'perf_hooks.performance.nodeTiming' | 'perf_hooks.performance.nodeTiming.bootstrapComplete' | 'perf_hooks.performance.nodeTiming.environment' | 'perf_hooks.performance.nodeTiming.idleTime' | 'perf_hooks.performance.nodeTiming.loopExit' | 'perf_hooks.performance.nodeTiming.loopStart' | 'perf_hooks.performance.nodeTiming.nodeStart' | 'perf_hooks.performance.nodeTiming.uvMetricsInfo' | 'perf_hooks.performance.nodeTiming.v8Start' | 'perf_hooks.performance.now' | 'perf_hooks.performance.onresourcetimingbufferfull' | 'perf_hooks.performance.setResourceTimingBufferSize' | 'perf_hooks.performance.timeOrigin' | 'perf_hooks.performance.timerify' | 'perf_hooks.performance.toJSON' | 'perf_hooks.createHistogram' | 'perf_hooks.eventLoopUtilization' | 'perf_hooks.timerify' | 'perf_hooks.monitorEventLoopDelay' | 'perf_hooks.PerformanceEntry' | 'perf_hooks.PerformanceMark' | 'perf_hooks.PerformanceMeasure' | 'perf_hooks.PerformanceNodeEntry' | 'perf_hooks.PerformanceNodeTiming' | 'perf_hooks.PerformanceResourceTiming' | 'perf_hooks.PerformanceObserver' | 'perf_hooks.PerformanceObserverEntryList' | 'perf_hooks.Histogram' | 'perf_hooks.IntervalHistogram' | 'perf_hooks.RecordableHistogram' | 'punycode' | 'punycode.ucs2' | 'punycode.version' | 'punycode.decode' | 'punycode.encode' | 'punycode.toASCII' | 'punycode.toUnicode' | 'querystring' | 'querystring.decode' | 'querystring.encode' | 'querystring.escape' | 'querystring.parse' | 'querystring.stringify' | 'querystring.unescape' | 'readline' | 'readline.promises' | 'readline.promises.createInterface' | 'readline.promises.Interface' | 'readline.promises.Readline' | 'readline.clearLine' | 'readline.clearScreenDown' | 'readline.createInterface' | 'readline.cursorTo' | 'readline.moveCursor' | 'readline.Interface' | 'readline.emitKeypressEvents' | 'readline.InterfaceConstructor' | 'readline/promises' | 'readline/promises.createInterface' | 'readline/promises.Interface' | 'readline/promises.Readline' | 'repl' | 'repl.start' | 'repl.writer' | 'repl.REPLServer()' | 'repl.REPLServer' | 'repl.REPL_MODE_MAGIC' | 'repl.REPL_MODE_SLOPPY' | 'repl.REPL_MODE_STRICT' | 'repl.Recoverable()' | 'repl.Recoverable' | 'repl.builtinModules' | 'sea' | 'sea.isSea' | 'sea.getAsset' | 'sea.getAssetAsBlob' | 'sea.getAssetKeys' | 'sea.getRawAsset' | 'sea.sea.isSea' | 'sea.sea.getAsset' | 'sea.sea.getAssetAsBlob' | 'sea.sea.getAssetKeys' | 'sea.sea.getRawAsset' | 'stream' | 'stream.promises' | 'stream.promises.pipeline' | 'stream.promises.finished' | 'stream.finished' | 'stream.pipeline' | 'stream.compose' | 'stream.duplexPair' | 'stream.Readable' | 'stream.Readable.from' | 'stream.Readable.isDisturbed' | 'stream.Readable.fromWeb' | 'stream.Readable.toWeb' | 'stream.Writable' | 'stream.Writable.fromWeb' | 'stream.Writable.toWeb' | 'stream.Duplex' | 'stream.Duplex.from' | 'stream.Duplex.fromWeb' | 'stream.Duplex.toWeb' | 'stream.Transform' | 'stream.isErrored' | 'stream.isReadable' | 'stream.addAbortSignal' | 'stream.getDefaultHighWaterMark' | 'stream.setDefaultHighWaterMark' | 'stream/promises.pipeline' | 'stream/promises.finished' | 'stream/web' | 'stream/web.ReadableStream' | 'stream/web.ReadableStream.from' | 'stream/web.ReadableStreamDefaultReader' | 'stream/web.ReadableStreamBYOBReader' | 'stream/web.ReadableStreamDefaultController' | 'stream/web.ReadableByteStreamController' | 'stream/web.ReadableStreamBYOBRequest' | 'stream/web.WritableStream' | 'stream/web.WritableStreamDefaultWriter' | 'stream/web.WritableStreamDefaultController' | 'stream/web.TransformStream' | 'stream/web.TransformStreamDefaultController' | 'stream/web.ByteLengthQueuingStrategy' | 'stream/web.CountQueuingStrategy' | 'stream/web.TextEncoderStream' | 'stream/web.TextDecoderStream' | 'stream/web.CompressionStream' | 'stream/web.DecompressionStream' | 'stream/consumers' | 'stream/consumers.arrayBuffer' | 'stream/consumers.blob' | 'stream/consumers.buffer' | 'stream/consumers.json' | 'stream/consumers.text' | '_stream_duplex' | '_stream_passthrough' | '_stream_readable' | '_stream_transform' | '_stream_wrap' | '_stream_writable' | 'string_decoder' | 'string_decoder.StringDecoder' | 'sqlite' | 'sqlite.constants' | 'sqlite.constants.SQLITE_CHANGESET_OMIT' | 'sqlite.constants.SQLITE_CHANGESET_REPLACE' | 'sqlite.constants.SQLITE_CHANGESET_ABORT' | 'sqlite.backup' | 'sqlite.DatabaseSync' | 'sqlite.Session' | 'sqlite.StatementSync' | 'sqlite.SQLITE_CHANGESET_OMIT' | 'sqlite.SQLITE_CHANGESET_REPLACE' | 'sqlite.SQLITE_CHANGESET_ABORT' | 'test' | 'test.after' | 'test.afterEach' | 'test.assert' | 'test.assert.register' | 'test.before' | 'test.beforeEach' | 'test.describe' | 'test.describe.only' | 'test.describe.skip' | 'test.describe.todo' | 'test.it' | 'test.it.only' | 'test.it.skip' | 'test.it.todo' | 'test.mock' | 'test.mock.fn' | 'test.mock.getter' | 'test.mock.method' | 'test.mock.module' | 'test.mock.property' | 'test.mock.reset' | 'test.mock.restoreAll' | 'test.mock.setter' | 'test.mock.timers' | 'test.mock.timers.enable' | 'test.mock.timers.reset' | 'test.mock.timers.tick' | 'test.only' | 'test.run' | 'test.snapshot' | 'test.snapshot.setDefaultSnapshotSerializers' | 'test.snapshot.setResolveSnapshotPath' | 'test.skip' | 'test.suite' | 'test.test' | 'test.test.only' | 'test.test.skip' | 'test.test.todo' | 'test.todo' | 'timers' | 'timers.Immediate' | 'timers.Timeout' | 'timers.setImmediate' | 'timers.clearImmediate' | 'timers.setInterval' | 'timers.clearInterval' | 'timers.setTimeout' | 'timers.clearTimeout' | 'timers.promises' | 'timers.promises.setTimeout' | 'timers.promises.setImmediate' | 'timers.promises.setInterval' | 'timers.promises.scheduler.wait' | 'timers.promises.scheduler.yield' | 'timers/promises' | 'timers/promises.setTimeout' | 'timers/promises.setImmediate' | 'timers/promises.setInterval' | 'timers/promises.scheduler.wait' | 'timers/promises.scheduler.yield' | 'tls' | 'tls.checkServerIdentity' | 'tls.connect' | 'tls.createSecureContext' | 'tls.createSecurePair' | 'tls.createServer' | 'tls.CryptoStream' | 'tls.DEFAULT_CIPHERS' | 'tls.DEFAULT_ECDH_CURVE' | 'tls.DEFAULT_MAX_VERSION' | 'tls.DEFAULT_MIN_VERSION' | 'tls.getCACertificates' | 'tls.getCiphers' | 'tls.rootCertificates' | 'tls.SecureContext' | 'tls.SecurePair' | 'tls.Server' | 'tls.setDefaultCACertificates' | 'tls.TLSSocket' | '_tls_common' | '_tls_wrap' | 'trace_events' | 'trace_events.createTracing' | 'trace_events.getEnabledCategories' | 'tty' | 'tty.isatty' | 'tty.ReadStream' | 'tty.WriteStream' | 'url' | 'url.domainToASCII' | 'url.domainToUnicode' | 'url.fileURLToPath' | 'url.format' | 'url.pathToFileURL' | 'url.urlToHttpOptions' | 'url.URL' | 'url.URL.canParse' | 'url.URL.createObjectURL' | 'url.URL.revokeObjectURL' | 'url.URLPattern' | 'url.URLSearchParams' | 'url.Url' | 'util.promisify' | 'util.promisify.custom' | 'util.callbackify' | 'util.debuglog' | 'util.debug' | 'util.deprecate' | 'util.diff' | 'util.format' | 'util.formatWithOptions' | 'util.getCallSite' | 'util.getCallSites' | 'util.getSystemErrorName' | 'util.getSystemErrorMap' | 'util.getSystemErrorMessage' | 'util.inherits' | 'util.inspect' | 'util.inspect.custom' | 'util.inspect.defaultOptions' | 'util.inspect.replDefaults' | 'util.isDeepStrictEqual' | 'util.parseArgs' | 'util.parseEnv' | 'util.setTraceSigInt' | 'util.stripVTControlCharacters' | 'util.styleText' | 'util.toUSVString' | 'util.transferableAbortController' | 'util.transferableAbortSignal' | 'util.aborted' | 'util.MIMEType' | 'util.MIMEParams' | 'util.TextDecoder' | 'util.TextEncoder' | 'util.types' | 'util.types.isExternal' | 'util.types.isDate' | 'util.types.isArgumentsObject' | 'util.types.isBigIntObject' | 'util.types.isBooleanObject' | 'util.types.isNumberObject' | 'util.types.isStringObject' | 'util.types.isSymbolObject' | 'util.types.isNativeError' | 'util.types.isRegExp' | 'util.types.isAsyncFunction' | 'util.types.isGeneratorFunction' | 'util.types.isGeneratorObject' | 'util.types.isPromise' | 'util.types.isMap' | 'util.types.isSet' | 'util.types.isMapIterator' | 'util.types.isSetIterator' | 'util.types.isWeakMap' | 'util.types.isWeakSet' | 'util.types.isArrayBuffer' | 'util.types.isDataView' | 'util.types.isSharedArrayBuffer' | 'util.types.isProxy' | 'util.types.isModuleNamespaceObject' | 'util.types.isAnyArrayBuffer' | 'util.types.isBoxedPrimitive' | 'util.types.isArrayBufferView' | 'util.types.isTypedArray' | 'util.types.isUint8Array' | 'util.types.isUint8ClampedArray' | 'util.types.isUint16Array' | 'util.types.isUint32Array' | 'util.types.isInt8Array' | 'util.types.isInt16Array' | 'util.types.isInt32Array' | 'util.types.isFloat16Array' | 'util.types.isFloat32Array' | 'util.types.isFloat64Array' | 'util.types.isBigInt64Array' | 'util.types.isBigUint64Array' | 'util.types.isKeyObject' | 'util.types.isCryptoKey' | 'util.types.isWebAssemblyCompiledModule' | 'util._extend' | 'util.isArray' | 'util.isBoolean' | 'util.isBuffer' | 'util.isDate' | 'util.isError' | 'util.isFunction' | 'util.isNull' | 'util.isNullOrUndefined' | 'util.isNumber' | 'util.isObject' | 'util.isPrimitive' | 'util.isRegExp' | 'util.isString' | 'util.isSymbol' | 'util.isUndefined' | 'util.log' | 'util' | 'util/types' | 'util/types.isExternal' | 'util/types.isDate' | 'util/types.isArgumentsObject' | 'util/types.isBigIntObject' | 'util/types.isBooleanObject' | 'util/types.isNumberObject' | 'util/types.isStringObject' | 'util/types.isSymbolObject' | 'util/types.isNativeError' | 'util/types.isRegExp' | 'util/types.isAsyncFunction' | 'util/types.isGeneratorFunction' | 'util/types.isGeneratorObject' | 'util/types.isPromise' | 'util/types.isMap' | 'util/types.isSet' | 'util/types.isMapIterator' | 'util/types.isSetIterator' | 'util/types.isWeakMap' | 'util/types.isWeakSet' | 'util/types.isArrayBuffer' | 'util/types.isDataView' | 'util/types.isSharedArrayBuffer' | 'util/types.isProxy' | 'util/types.isModuleNamespaceObject' | 'util/types.isAnyArrayBuffer' | 'util/types.isBoxedPrimitive' | 'util/types.isArrayBufferView' | 'util/types.isTypedArray' | 'util/types.isUint8Array' | 'util/types.isUint8ClampedArray' | 'util/types.isUint16Array' | 'util/types.isUint32Array' | 'util/types.isInt8Array' | 'util/types.isInt16Array' | 'util/types.isInt32Array' | 'util/types.isFloat16Array' | 'util/types.isFloat32Array' | 'util/types.isFloat64Array' | 'util/types.isBigInt64Array' | 'util/types.isBigUint64Array' | 'util/types.isKeyObject' | 'util/types.isCryptoKey' | 'util/types.isWebAssemblyCompiledModule' | 'v8' | 'v8.serialize' | 'v8.deserialize' | 'v8.Serializer' | 'v8.Deserializer' | 'v8.DefaultSerializer' | 'v8.DefaultDeserializer' | 'v8.promiseHooks' | 'v8.promiseHooks.onInit' | 'v8.promiseHooks.onSettled' | 'v8.promiseHooks.onBefore' | 'v8.promiseHooks.onAfter' | 'v8.promiseHooks.createHook' | 'v8.startupSnapshot' | 'v8.startupSnapshot.addSerializeCallback' | 'v8.startupSnapshot.addDeserializeCallback' | 'v8.startupSnapshot.setDeserializeMainFunction' | 'v8.startupSnapshot.isBuildingSnapshot' | 'v8.cachedDataVersionTag' | 'v8.getHeapCodeStatistics' | 'v8.getHeapSnapshot' | 'v8.getHeapSpaceStatistics' | 'v8.getHeapStatistics' | 'v8.isStringOneByteRepresentation' | 'v8.queryObjects' | 'v8.setFlagsFromString' | 'v8.stopCoverage' | 'v8.takeCoverage' | 'v8.writeHeapSnapshot' | 'v8.setHeapSnapshotNearHeapLimit' | 'v8.GCProfiler' | 'v8.startCpuProfile' | 'vm.constants' | 'vm.compileFunction' | 'vm.createContext' | 'vm.isContext' | 'vm.measureMemory' | 'vm.runInContext' | 'vm.runInNewContext' | 'vm.runInThisContext' | 'vm.Script' | 'vm.Module' | 'vm.SourceTextModule' | 'vm.SyntheticModule' | 'vm' | 'wasi.WASI' | 'wasi' | 'worker_threads' | 'worker_threads.parentPort' | 'worker_threads.resourceLimits' | 'worker_threads.SHARE_ENV' | 'worker_threads.threadId' | 'worker_threads.threadName' | 'worker_threads.workerData' | 'worker_threads.getEnvironmentData' | 'worker_threads.getHeapStatistics' | 'worker_threads.markAsUncloneable' | 'worker_threads.markAsUntransferable' | 'worker_threads.isInternalThread' | 'worker_threads.isMainThread' | 'worker_threads.isMarkedAsUntransferable' | 'worker_threads.locks' | 'worker_threads.locks.request' | 'worker_threads.locks.query' | 'worker_threads.moveMessagePortToContext' | 'worker_threads.postMessageToThread' | 'worker_threads.receiveMessageOnPort' | 'worker_threads.setEnvironmentData' | 'worker_threads.BroadcastChannel' | 'worker_threads.MessageChannel' | 'worker_threads.MessagePort' | 'worker_threads.Worker' | 'zlib.brotliCompress' | 'zlib.brotliCompressSync' | 'zlib.brotliDecompress' | 'zlib.brotliDecompressSync' | 'zlib.constants' | 'zlib.constants.ZSTD_e_continue' | 'zlib.constants.ZSTD_e_flush' | 'zlib.constants.ZSTD_e_end' | 'zlib.constants.ZSTD_fast' | 'zlib.constants.ZSTD_dfast' | 'zlib.constants.ZSTD_greedy' | 'zlib.constants.ZSTD_lazy' | 'zlib.constants.ZSTD_lazy2' | 'zlib.constants.ZSTD_btlazy2' | 'zlib.constants.ZSTD_btopt' | 'zlib.constants.ZSTD_btultra' | 'zlib.constants.ZSTD_btultra2' | 'zlib.constants.ZSTD_c_compressionLevel' | 'zlib.constants.ZSTD_c_windowLog' | 'zlib.constants.ZSTD_c_hashLog' | 'zlib.constants.ZSTD_c_chainLog' | 'zlib.constants.ZSTD_c_searchLog' | 'zlib.constants.ZSTD_c_minMatch' | 'zlib.constants.ZSTD_c_targetLength' | 'zlib.constants.ZSTD_c_strategy' | 'zlib.constants.ZSTD_c_enableLongDistanceMatching' | 'zlib.constants.ZSTD_c_ldmHashLog' | 'zlib.constants.ZSTD_c_ldmMinMatch' | 'zlib.constants.ZSTD_c_ldmBucketSizeLog' | 'zlib.constants.ZSTD_c_ldmHashRateLog' | 'zlib.constants.ZSTD_c_contentSizeFlag' | 'zlib.constants.ZSTD_c_checksumFlag' | 'zlib.constants.ZSTD_c_dictIDFlag' | 'zlib.constants.ZSTD_c_nbWorkers' | 'zlib.constants.ZSTD_c_jobSize' | 'zlib.constants.ZSTD_c_overlapLog' | 'zlib.constants.ZSTD_d_windowLogMax' | 'zlib.constants.ZSTD_CLEVEL_DEFAULT' | 'zlib.constants.ZSTD_error_no_error' | 'zlib.constants.ZSTD_error_GENERIC' | 'zlib.constants.ZSTD_error_prefix_unknown' | 'zlib.constants.ZSTD_error_version_unsupported' | 'zlib.constants.ZSTD_error_frameParameter_unsupported' | 'zlib.constants.ZSTD_error_frameParameter_windowTooLarge' | 'zlib.constants.ZSTD_error_corruption_detected' | 'zlib.constants.ZSTD_error_checksum_wrong' | 'zlib.constants.ZSTD_error_literals_headerWrong' | 'zlib.constants.ZSTD_error_dictionary_corrupted' | 'zlib.constants.ZSTD_error_dictionary_wrong' | 'zlib.constants.ZSTD_error_dictionaryCreation_failed' | 'zlib.constants.ZSTD_error_parameter_unsupported' | 'zlib.constants.ZSTD_error_parameter_combination_unsupported' | 'zlib.constants.ZSTD_error_parameter_outOfBound' | 'zlib.constants.ZSTD_error_tableLog_tooLarge' | 'zlib.constants.ZSTD_error_maxSymbolValue_tooLarge' | 'zlib.constants.ZSTD_error_maxSymbolValue_tooSmall' | 'zlib.constants.ZSTD_error_stabilityCondition_notRespected' | 'zlib.constants.ZSTD_error_stage_wrong' | 'zlib.constants.ZSTD_error_init_missing' | 'zlib.constants.ZSTD_error_memory_allocation' | 'zlib.constants.ZSTD_error_workSpace_tooSmall' | 'zlib.constants.ZSTD_error_dstSize_tooSmall' | 'zlib.constants.ZSTD_error_srcSize_wrong' | 'zlib.constants.ZSTD_error_dstBuffer_null' | 'zlib.constants.ZSTD_error_noForwardProgress_destFull' | 'zlib.constants.ZSTD_error_noForwardProgress_inputEmpty' | 'zlib.crc32' | 'zlib.createBrotliCompress' | 'zlib.createBrotliDecompress' | 'zlib.createDeflate' | 'zlib.createDeflateRaw' | 'zlib.createGunzip' | 'zlib.createGzip' | 'zlib.createInflate' | 'zlib.createInflateRaw' | 'zlib.createUnzip' | 'zlib.createZstdCompress' | 'zlib.createZstdDecompress' | 'zlib.deflate' | 'zlib.deflateRaw' | 'zlib.deflateRawSync' | 'zlib.deflateSync' | 'zlib.gunzip' | 'zlib.gunzipSync' | 'zlib.gzip' | 'zlib.gzipSync' | 'zlib.inflate' | 'zlib.inflateRaw' | 'zlib.inflateRawSync' | 'zlib.inflateSync' | 'zlib.unzip' | 'zlib.unzipSync' | 'zlib.zstdCompress' | 'zlib.zstdCompressSync' | 'zlib.zstdDecompress' | 'zlib.zstdDecompressSync' | 'zlib.BrotliCompress()' | 'zlib.BrotliCompress' | 'zlib.BrotliDecompress()' | 'zlib.BrotliDecompress' | 'zlib.Deflate()' | 'zlib.Deflate' | 'zlib.DeflateRaw()' | 'zlib.DeflateRaw' | 'zlib.Gunzip()' | 'zlib.Gunzip' | 'zlib.Gzip()' | 'zlib.Gzip' | 'zlib.Inflate()' | 'zlib.Inflate' | 'zlib.InflateRaw()' | 'zlib.InflateRaw' | 'zlib.Unzip()' | 'zlib.Unzip' | 'zlib.ZstdCompress' | 'zlib.ZstdDecompress' | 'zlib.ZstdOptions' | 'zlib' | 'import.meta.resolve' | 'import.meta.dirname' | 'import.meta.filename' | 'import.meta.main')[];
12738
12821
  }]; // ----- node/prefer-global/buffer -----
12739
12822
  type NodePreferGlobalBuffer = [] | ['always' | 'never']; // ----- node/prefer-global/console -----
12740
12823
  type NodePreferGlobalConsole = [] | ['always' | 'never']; // ----- node/prefer-global/crypto -----
@@ -18992,4 +19075,4 @@ declare function generatePerfectionistSortConfig(strings: string[], matchType?:
18992
19075
  };
18993
19076
  };
18994
19077
  //#endregion
18995
- export { Awaitable, type ConfigNames, type FileType, GLOB_ALL_SRC, GLOB_ASTRO, GLOB_ASTRO_JS, GLOB_ASTRO_TS, GLOB_CSS, GLOB_EXCLUDE, GLOB_GRAPHQL, GLOB_HTML, GLOB_JS, GLOB_JSON, GLOB_JSON5, GLOB_JSONC, GLOB_JSX, GLOB_LESS, GLOB_MARKDOWN, GLOB_MARKDOWN_CODE, GLOB_MDX, GLOB_MDX_CODE, GLOB_POSTCSS, GLOB_SCSS, GLOB_SRC, GLOB_SRC_EXT, GLOB_STYLE, GLOB_SVELTE, GLOB_SVELTE_JS, GLOB_SVELTE_TS, GLOB_SVG, GLOB_TESTS, GLOB_TOML, GLOB_TS, GLOB_TSX, GLOB_XML, GLOB_YAML, OptionsConfig, OptionsHasTypeScript, OptionsIsInEditor, OptionsOverrides, OptionsOverridesEmbeddedScripts, OptionsTypeAware, ResolvedOptions, Rules, TypedFlatConfigItem, astro, clearCache, combine, eslintConfig as default, eslintConfig, defaultPluginRenaming, disables, fix, fixFile, generatePerfectionistSortConfig, getLanguageOptions, getOverrides, getOverridesEmbeddedScripts, html, ignores, interopDefault, isInEditorEnv, isInGitHooksOrLintStaged, js, json, jsx, md, mdx, react, renamePluginInConfigs, renameRules, resolveSubOptions, svelte, test, toArray, toml, ts, tsx, yaml };
19078
+ export { type Awaitable, type ConfigNames, type FileType, GLOB_ALL_SRC, GLOB_ASTRO, GLOB_ASTRO_JS, GLOB_ASTRO_TS, GLOB_CSS, GLOB_EXCLUDE, GLOB_GRAPHQL, GLOB_HTML, GLOB_JS, GLOB_JSON, GLOB_JSON5, GLOB_JSONC, GLOB_JSX, GLOB_LESS, GLOB_MARKDOWN, GLOB_MARKDOWN_CODE, GLOB_MDX, GLOB_MDX_CODE, GLOB_POSTCSS, GLOB_SCSS, GLOB_SRC, GLOB_SRC_EXT, GLOB_STYLE, GLOB_SVELTE, GLOB_SVELTE_JS, GLOB_SVELTE_TS, GLOB_SVG, GLOB_TESTS, GLOB_TOML, GLOB_TS, GLOB_TSX, GLOB_XML, GLOB_YAML, type OptionsConfig, type OptionsHasTypeScript, type OptionsIsInEditor, type OptionsOverrides, type OptionsOverridesEmbeddedScripts, type OptionsTypeAware, ResolvedOptions, type Rules, type TypedFlatConfigItem, astro, clearCache, combine, eslintConfig as default, eslintConfig, defaultPluginRenaming, disables, fix, fixFile, generatePerfectionistSortConfig, getLanguageOptions, getOverrides, getOverridesEmbeddedScripts, html, ignores, interopDefault, isInEditorEnv, isInGitHooksOrLintStaged, js, json, jsx, md, mdx, react, renamePluginInConfigs, renameRules, resolveSubOptions, svelte, test, toArray, toml, ts, tsx, yaml };