@jsse/eslint-config 0.1.9 → 0.1.11
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/cli.cjs +1 -1
- package/dist/cli.js +1 -1
- package/dist/index.cjs +8 -300
- package/dist/index.d.cts +2119 -301
- package/dist/index.d.ts +2119 -301
- package/dist/index.js +8 -299
- package/package.json +14 -15
package/dist/index.d.cts
CHANGED
|
@@ -20,8 +20,6 @@ export { default as pluginPerfectionist } from 'eslint-plugin-perfectionist';
|
|
|
20
20
|
export { default as pluginUnicorn } from 'eslint-plugin-unicorn';
|
|
21
21
|
export { default as pluginUnusedImports } from 'eslint-plugin-unused-imports';
|
|
22
22
|
export { default as pluginTs } from '@typescript-eslint/eslint-plugin';
|
|
23
|
-
import * as eslintPluginSortKeys from 'eslint-plugin-sort-keys';
|
|
24
|
-
export { eslintPluginSortKeys as pluginSortKeys };
|
|
25
23
|
|
|
26
24
|
/* eslint-disable */
|
|
27
25
|
/* prettier-ignore */
|
|
@@ -6619,6 +6617,11 @@ interface NRuleOptions {
|
|
|
6619
6617
|
* @see https://github.com/eslint-community/eslint-plugin-n/blob/HEAD/docs/rules/handle-callback-err.md
|
|
6620
6618
|
*/
|
|
6621
6619
|
"n/handle-callback-err"?: Linter.RuleEntry<NHandleCallbackErr>;
|
|
6620
|
+
/**
|
|
6621
|
+
* require correct usage of hashbang
|
|
6622
|
+
* @see https://github.com/eslint-community/eslint-plugin-n/blob/HEAD/docs/rules/hashbang.md
|
|
6623
|
+
*/
|
|
6624
|
+
"n/hashbang"?: Linter.RuleEntry<NHashbang>;
|
|
6622
6625
|
/**
|
|
6623
6626
|
* enforce Node.js-style error-first callback pattern is followed
|
|
6624
6627
|
* @see https://github.com/eslint-community/eslint-plugin-n/blob/HEAD/docs/rules/no-callback-literal.md
|
|
@@ -6715,12 +6718,6 @@ interface NRuleOptions {
|
|
|
6715
6718
|
* @see https://github.com/eslint-community/eslint-plugin-n/blob/HEAD/docs/rules/no-unpublished-require.md
|
|
6716
6719
|
*/
|
|
6717
6720
|
"n/no-unpublished-require"?: Linter.RuleEntry<NNoUnpublishedRequire>;
|
|
6718
|
-
/**
|
|
6719
|
-
* disallow unsupported ECMAScript features on the specified version
|
|
6720
|
-
* @see https://github.com/eslint-community/eslint-plugin-n/blob/HEAD/docs/rules/no-unsupported-features.md
|
|
6721
|
-
* @deprecated
|
|
6722
|
-
*/
|
|
6723
|
-
"n/no-unsupported-features"?: Linter.RuleEntry<NNoUnsupportedFeatures>;
|
|
6724
6721
|
/**
|
|
6725
6722
|
* disallow unsupported ECMAScript built-ins on the specified version
|
|
6726
6723
|
* @see https://github.com/eslint-community/eslint-plugin-n/blob/HEAD/docs/rules/no-unsupported-features/es-builtins.md
|
|
@@ -6771,6 +6768,11 @@ interface NRuleOptions {
|
|
|
6771
6768
|
* @see https://github.com/eslint-community/eslint-plugin-n/blob/HEAD/docs/rules/prefer-global/url-search-params.md
|
|
6772
6769
|
*/
|
|
6773
6770
|
"n/prefer-global/url-search-params"?: Linter.RuleEntry<NPreferGlobalUrlSearchParams>;
|
|
6771
|
+
/**
|
|
6772
|
+
* enforce using the `node:` protocol when importing Node.js builtin modules.
|
|
6773
|
+
* @see https://github.com/eslint-community/eslint-plugin-n/blob/HEAD/docs/rules/prefer-node-protocol.md
|
|
6774
|
+
*/
|
|
6775
|
+
"n/prefer-node-protocol"?: Linter.RuleEntry<NPreferNodeProtocol>;
|
|
6774
6776
|
/**
|
|
6775
6777
|
* enforce `require("dns").promises`
|
|
6776
6778
|
* @see https://github.com/eslint-community/eslint-plugin-n/blob/HEAD/docs/rules/prefer-promises/dns.md
|
|
@@ -6787,8 +6789,9 @@ interface NRuleOptions {
|
|
|
6787
6789
|
*/
|
|
6788
6790
|
"n/process-exit-as-throw"?: Linter.RuleEntry<[]>;
|
|
6789
6791
|
/**
|
|
6790
|
-
* require correct usage of
|
|
6791
|
-
* @see https://github.com/eslint-community/eslint-plugin-n/blob/HEAD/docs/rules/
|
|
6792
|
+
* require correct usage of hashbang
|
|
6793
|
+
* @see https://github.com/eslint-community/eslint-plugin-n/blob/HEAD/docs/rules/hashbang.md
|
|
6794
|
+
* @deprecated
|
|
6792
6795
|
*/
|
|
6793
6796
|
"n/shebang"?: Linter.RuleEntry<NShebang>;
|
|
6794
6797
|
}
|
|
@@ -6818,6 +6821,33 @@ type NFileExtensionInImport =
|
|
|
6818
6821
|
];
|
|
6819
6822
|
// ----- n/handle-callback-err -----
|
|
6820
6823
|
type NHandleCallbackErr = [] | [string];
|
|
6824
|
+
// ----- n/hashbang -----
|
|
6825
|
+
type NHashbang =
|
|
6826
|
+
| []
|
|
6827
|
+
| [
|
|
6828
|
+
{
|
|
6829
|
+
convertPath?:
|
|
6830
|
+
| {
|
|
6831
|
+
[k: string]: [string, string];
|
|
6832
|
+
}
|
|
6833
|
+
| [
|
|
6834
|
+
{
|
|
6835
|
+
include: [string, ...string[]];
|
|
6836
|
+
exclude?: string[];
|
|
6837
|
+
|
|
6838
|
+
replace: [string, string];
|
|
6839
|
+
},
|
|
6840
|
+
...{
|
|
6841
|
+
include: [string, ...string[]];
|
|
6842
|
+
exclude?: string[];
|
|
6843
|
+
|
|
6844
|
+
replace: [string, string];
|
|
6845
|
+
}[],
|
|
6846
|
+
];
|
|
6847
|
+
ignoreUnpublished?: boolean;
|
|
6848
|
+
additionalExecutables?: string[];
|
|
6849
|
+
},
|
|
6850
|
+
];
|
|
6821
6851
|
// ----- n/no-deprecated-api -----
|
|
6822
6852
|
type NNoDeprecatedApi =
|
|
6823
6853
|
| []
|
|
@@ -7035,6 +7065,8 @@ type NNoMissingImport =
|
|
|
7035
7065
|
{
|
|
7036
7066
|
allowModules?: string[];
|
|
7037
7067
|
resolvePaths?: string[];
|
|
7068
|
+
tryExtensions?: string[];
|
|
7069
|
+
tsconfigPath?: string;
|
|
7038
7070
|
typescriptExtensionMap?:
|
|
7039
7071
|
| unknown[][]
|
|
7040
7072
|
| (
|
|
@@ -7044,7 +7076,6 @@ type NNoMissingImport =
|
|
|
7044
7076
|
| "react-native"
|
|
7045
7077
|
| "preserve"
|
|
7046
7078
|
);
|
|
7047
|
-
tsconfigPath?: string;
|
|
7048
7079
|
},
|
|
7049
7080
|
];
|
|
7050
7081
|
// ----- n/no-missing-require -----
|
|
@@ -7191,154 +7222,6 @@ type NNoUnpublishedRequire =
|
|
|
7191
7222
|
tryExtensions?: string[];
|
|
7192
7223
|
},
|
|
7193
7224
|
];
|
|
7194
|
-
// ----- n/no-unsupported-features -----
|
|
7195
|
-
type NNoUnsupportedFeatures =
|
|
7196
|
-
| []
|
|
7197
|
-
| [
|
|
7198
|
-
| (0.1 | 0.12 | 4 | 5 | 6 | 6.5 | 7 | 7.6 | 8 | 8.3 | 9 | 10)
|
|
7199
|
-
| string
|
|
7200
|
-
| {
|
|
7201
|
-
version?:
|
|
7202
|
-
| (0.1 | 0.12 | 4 | 5 | 6 | 6.5 | 7 | 7.6 | 8 | 8.3 | 9 | 10)
|
|
7203
|
-
| string;
|
|
7204
|
-
ignores?: (
|
|
7205
|
-
| "syntax"
|
|
7206
|
-
| "defaultParameters"
|
|
7207
|
-
| "restParameters"
|
|
7208
|
-
| "spreadOperators"
|
|
7209
|
-
| "objectLiteralExtensions"
|
|
7210
|
-
| "objectPropertyShorthandOfGetSet"
|
|
7211
|
-
| "forOf"
|
|
7212
|
-
| "binaryNumberLiterals"
|
|
7213
|
-
| "octalNumberLiterals"
|
|
7214
|
-
| "templateStrings"
|
|
7215
|
-
| "regexpY"
|
|
7216
|
-
| "regexpU"
|
|
7217
|
-
| "destructuring"
|
|
7218
|
-
| "unicodeCodePointEscapes"
|
|
7219
|
-
| "new.target"
|
|
7220
|
-
| "const"
|
|
7221
|
-
| "let"
|
|
7222
|
-
| "blockScopedFunctions"
|
|
7223
|
-
| "arrowFunctions"
|
|
7224
|
-
| "generatorFunctions"
|
|
7225
|
-
| "classes"
|
|
7226
|
-
| "modules"
|
|
7227
|
-
| "exponentialOperators"
|
|
7228
|
-
| "asyncAwait"
|
|
7229
|
-
| "trailingCommasInFunctions"
|
|
7230
|
-
| "templateLiteralRevision"
|
|
7231
|
-
| "regexpS"
|
|
7232
|
-
| "regexpNamedCaptureGroups"
|
|
7233
|
-
| "regexpLookbehind"
|
|
7234
|
-
| "regexpUnicodeProperties"
|
|
7235
|
-
| "restProperties"
|
|
7236
|
-
| "spreadProperties"
|
|
7237
|
-
| "asyncGenerators"
|
|
7238
|
-
| "forAwaitOf"
|
|
7239
|
-
| "runtime"
|
|
7240
|
-
| "globalObjects"
|
|
7241
|
-
| "typedArrays"
|
|
7242
|
-
| "Int8Array"
|
|
7243
|
-
| "Uint8Array"
|
|
7244
|
-
| "Uint8ClampedArray"
|
|
7245
|
-
| "Int16Array"
|
|
7246
|
-
| "Uint16Array"
|
|
7247
|
-
| "Int32Array"
|
|
7248
|
-
| "Uint32Array"
|
|
7249
|
-
| "Float32Array"
|
|
7250
|
-
| "Float64Array"
|
|
7251
|
-
| "DataView"
|
|
7252
|
-
| "Map"
|
|
7253
|
-
| "Set"
|
|
7254
|
-
| "WeakMap"
|
|
7255
|
-
| "WeakSet"
|
|
7256
|
-
| "Proxy"
|
|
7257
|
-
| "Reflect"
|
|
7258
|
-
| "Promise"
|
|
7259
|
-
| "Symbol"
|
|
7260
|
-
| "SharedArrayBuffer"
|
|
7261
|
-
| "Atomics"
|
|
7262
|
-
| "staticMethods"
|
|
7263
|
-
| "Object.*"
|
|
7264
|
-
| "Object.assign"
|
|
7265
|
-
| "Object.is"
|
|
7266
|
-
| "Object.getOwnPropertySymbols"
|
|
7267
|
-
| "Object.setPrototypeOf"
|
|
7268
|
-
| "Object.values"
|
|
7269
|
-
| "Object.entries"
|
|
7270
|
-
| "Object.getOwnPropertyDescriptors"
|
|
7271
|
-
| "String.*"
|
|
7272
|
-
| "String.raw"
|
|
7273
|
-
| "String.fromCodePoint"
|
|
7274
|
-
| "Array.*"
|
|
7275
|
-
| "Array.from"
|
|
7276
|
-
| "Array.of"
|
|
7277
|
-
| "Number.*"
|
|
7278
|
-
| "Number.isFinite"
|
|
7279
|
-
| "Number.isInteger"
|
|
7280
|
-
| "Number.isSafeInteger"
|
|
7281
|
-
| "Number.isNaN"
|
|
7282
|
-
| "Number.EPSILON"
|
|
7283
|
-
| "Number.MIN_SAFE_INTEGER"
|
|
7284
|
-
| "Number.MAX_SAFE_INTEGER"
|
|
7285
|
-
| "Math.*"
|
|
7286
|
-
| "Math.clz32"
|
|
7287
|
-
| "Math.imul"
|
|
7288
|
-
| "Math.sign"
|
|
7289
|
-
| "Math.log10"
|
|
7290
|
-
| "Math.log2"
|
|
7291
|
-
| "Math.log1p"
|
|
7292
|
-
| "Math.expm1"
|
|
7293
|
-
| "Math.cosh"
|
|
7294
|
-
| "Math.sinh"
|
|
7295
|
-
| "Math.tanh"
|
|
7296
|
-
| "Math.acosh"
|
|
7297
|
-
| "Math.asinh"
|
|
7298
|
-
| "Math.atanh"
|
|
7299
|
-
| "Math.trunc"
|
|
7300
|
-
| "Math.fround"
|
|
7301
|
-
| "Math.cbrt"
|
|
7302
|
-
| "Math.hypot"
|
|
7303
|
-
| "Symbol.*"
|
|
7304
|
-
| "Symbol.hasInstance"
|
|
7305
|
-
| "Symbol.isConcatSpreadablec"
|
|
7306
|
-
| "Symbol.iterator"
|
|
7307
|
-
| "Symbol.species"
|
|
7308
|
-
| "Symbol.replace"
|
|
7309
|
-
| "Symbol.search"
|
|
7310
|
-
| "Symbol.split"
|
|
7311
|
-
| "Symbol.match"
|
|
7312
|
-
| "Symbol.toPrimitive"
|
|
7313
|
-
| "Symbol.toStringTag"
|
|
7314
|
-
| "Symbol.unscopables"
|
|
7315
|
-
| "Atomics.*"
|
|
7316
|
-
| "Atomics.add"
|
|
7317
|
-
| "Atomics.and"
|
|
7318
|
-
| "Atomics.compareExchange"
|
|
7319
|
-
| "Atomics.exchange"
|
|
7320
|
-
| "Atomics.wait"
|
|
7321
|
-
| "Atomics.wake"
|
|
7322
|
-
| "Atomics.isLockFree"
|
|
7323
|
-
| "Atomics.load"
|
|
7324
|
-
| "Atomics.or"
|
|
7325
|
-
| "Atomics.store"
|
|
7326
|
-
| "Atomics.sub"
|
|
7327
|
-
| "Atomics.xor"
|
|
7328
|
-
| "extends"
|
|
7329
|
-
| "extendsArray"
|
|
7330
|
-
| "extendsRegExp"
|
|
7331
|
-
| "extendsFunction"
|
|
7332
|
-
| "extendsPromise"
|
|
7333
|
-
| "extendsBoolean"
|
|
7334
|
-
| "extendsNumber"
|
|
7335
|
-
| "extendsString"
|
|
7336
|
-
| "extendsMap"
|
|
7337
|
-
| "extendsSet"
|
|
7338
|
-
| "extendsNull"
|
|
7339
|
-
)[];
|
|
7340
|
-
},
|
|
7341
|
-
];
|
|
7342
7225
|
// ----- n/no-unsupported-features/es-builtins -----
|
|
7343
7226
|
type NNoUnsupportedFeaturesEsBuiltins =
|
|
7344
7227
|
| []
|
|
@@ -7347,72 +7230,371 @@ type NNoUnsupportedFeaturesEsBuiltins =
|
|
|
7347
7230
|
version?: string;
|
|
7348
7231
|
ignores?: (
|
|
7349
7232
|
| "AggregateError"
|
|
7233
|
+
| "Array"
|
|
7350
7234
|
| "Array.from"
|
|
7235
|
+
| "Array.isArray"
|
|
7236
|
+
| "Array.length"
|
|
7351
7237
|
| "Array.of"
|
|
7238
|
+
| "Array.toLocaleString"
|
|
7239
|
+
| "ArrayBuffer"
|
|
7240
|
+
| "ArrayBuffer.isView"
|
|
7241
|
+
| "Atomics"
|
|
7242
|
+
| "Atomics.add"
|
|
7243
|
+
| "Atomics.and"
|
|
7244
|
+
| "Atomics.compareExchange"
|
|
7245
|
+
| "Atomics.exchange"
|
|
7246
|
+
| "Atomics.isLockFree"
|
|
7247
|
+
| "Atomics.load"
|
|
7248
|
+
| "Atomics.notify"
|
|
7249
|
+
| "Atomics.or"
|
|
7250
|
+
| "Atomics.store"
|
|
7251
|
+
| "Atomics.sub"
|
|
7252
|
+
| "Atomics.wait"
|
|
7253
|
+
| "Atomics.waitAsync"
|
|
7254
|
+
| "Atomics.xor"
|
|
7352
7255
|
| "BigInt"
|
|
7256
|
+
| "BigInt.asIntN"
|
|
7257
|
+
| "BigInt.asUintN"
|
|
7258
|
+
| "BigInt64Array"
|
|
7259
|
+
| "BigInt64Array.BYTES_PER_ELEMENT"
|
|
7260
|
+
| "BigInt64Array.from"
|
|
7261
|
+
| "BigInt64Array.name"
|
|
7262
|
+
| "BigInt64Array.of"
|
|
7263
|
+
| "BigUint64Array"
|
|
7264
|
+
| "BigUint64Array.BYTES_PER_ELEMENT"
|
|
7265
|
+
| "BigUint64Array.from"
|
|
7266
|
+
| "BigUint64Array.name"
|
|
7267
|
+
| "BigUint64Array.of"
|
|
7268
|
+
| "Boolean"
|
|
7269
|
+
| "DataView"
|
|
7270
|
+
| "Date"
|
|
7271
|
+
| "Date.UTC"
|
|
7272
|
+
| "Date.now"
|
|
7273
|
+
| "Date.parse"
|
|
7274
|
+
| "Date.toLocaleDateString"
|
|
7275
|
+
| "Date.toLocaleString"
|
|
7276
|
+
| "Date.toLocaleTimeString"
|
|
7277
|
+
| "Error"
|
|
7278
|
+
| "Error.cause"
|
|
7279
|
+
| "EvalError"
|
|
7353
7280
|
| "FinalizationRegistry"
|
|
7281
|
+
| "Float32Array"
|
|
7282
|
+
| "Float32Array.BYTES_PER_ELEMENT"
|
|
7283
|
+
| "Float32Array.from"
|
|
7284
|
+
| "Float32Array.name"
|
|
7285
|
+
| "Float32Array.of"
|
|
7286
|
+
| "Float64Array"
|
|
7287
|
+
| "Float64Array.BYTES_PER_ELEMENT"
|
|
7288
|
+
| "Float64Array.from"
|
|
7289
|
+
| "Float64Array.name"
|
|
7290
|
+
| "Float64Array.of"
|
|
7291
|
+
| "Function"
|
|
7292
|
+
| "Function.length"
|
|
7293
|
+
| "Function.name"
|
|
7294
|
+
| "Infinity"
|
|
7295
|
+
| "Int16Array"
|
|
7296
|
+
| "Int16Array.BYTES_PER_ELEMENT"
|
|
7297
|
+
| "Int16Array.from"
|
|
7298
|
+
| "Int16Array.name"
|
|
7299
|
+
| "Int16Array.of"
|
|
7300
|
+
| "Int32Array"
|
|
7301
|
+
| "Int32Array.BYTES_PER_ELEMENT"
|
|
7302
|
+
| "Int32Array.from"
|
|
7303
|
+
| "Int32Array.name"
|
|
7304
|
+
| "Int32Array.of"
|
|
7305
|
+
| "Int8Array"
|
|
7306
|
+
| "Int8Array.BYTES_PER_ELEMENT"
|
|
7307
|
+
| "Int8Array.from"
|
|
7308
|
+
| "Int8Array.name"
|
|
7309
|
+
| "Int8Array.of"
|
|
7310
|
+
| "Intl"
|
|
7311
|
+
| "Intl.Collator"
|
|
7312
|
+
| "Intl.DateTimeFormat"
|
|
7313
|
+
| "Intl.DisplayNames"
|
|
7314
|
+
| "Intl.ListFormat"
|
|
7315
|
+
| "Intl.Locale"
|
|
7316
|
+
| "Intl.NumberFormat"
|
|
7317
|
+
| "Intl.PluralRules"
|
|
7318
|
+
| "Intl.RelativeTimeFormat"
|
|
7319
|
+
| "Intl.Segmenter"
|
|
7320
|
+
| "Intl.Segments"
|
|
7321
|
+
| "Intl.getCanonicalLocales"
|
|
7322
|
+
| "Intl.supportedValuesOf"
|
|
7323
|
+
| "JSON"
|
|
7324
|
+
| "JSON.parse"
|
|
7325
|
+
| "JSON.stringify"
|
|
7354
7326
|
| "Map"
|
|
7327
|
+
| "Map.groupBy"
|
|
7328
|
+
| "Math"
|
|
7329
|
+
| "Math.E"
|
|
7330
|
+
| "Math.LN10"
|
|
7331
|
+
| "Math.LN2"
|
|
7332
|
+
| "Math.LOG10E"
|
|
7333
|
+
| "Math.LOG2E"
|
|
7334
|
+
| "Math.PI"
|
|
7335
|
+
| "Math.SQRT1_2"
|
|
7336
|
+
| "Math.SQRT2"
|
|
7337
|
+
| "Math.abs"
|
|
7338
|
+
| "Math.acos"
|
|
7355
7339
|
| "Math.acosh"
|
|
7340
|
+
| "Math.asin"
|
|
7356
7341
|
| "Math.asinh"
|
|
7342
|
+
| "Math.atan"
|
|
7343
|
+
| "Math.atan2"
|
|
7357
7344
|
| "Math.atanh"
|
|
7358
7345
|
| "Math.cbrt"
|
|
7346
|
+
| "Math.ceil"
|
|
7359
7347
|
| "Math.clz32"
|
|
7348
|
+
| "Math.cos"
|
|
7360
7349
|
| "Math.cosh"
|
|
7350
|
+
| "Math.exp"
|
|
7361
7351
|
| "Math.expm1"
|
|
7352
|
+
| "Math.floor"
|
|
7362
7353
|
| "Math.fround"
|
|
7363
7354
|
| "Math.hypot"
|
|
7364
7355
|
| "Math.imul"
|
|
7356
|
+
| "Math.log"
|
|
7365
7357
|
| "Math.log10"
|
|
7366
7358
|
| "Math.log1p"
|
|
7367
7359
|
| "Math.log2"
|
|
7360
|
+
| "Math.max"
|
|
7361
|
+
| "Math.min"
|
|
7362
|
+
| "Math.pow"
|
|
7363
|
+
| "Math.random"
|
|
7364
|
+
| "Math.round"
|
|
7368
7365
|
| "Math.sign"
|
|
7366
|
+
| "Math.sin"
|
|
7369
7367
|
| "Math.sinh"
|
|
7368
|
+
| "Math.sqrt"
|
|
7369
|
+
| "Math.tan"
|
|
7370
7370
|
| "Math.tanh"
|
|
7371
7371
|
| "Math.trunc"
|
|
7372
|
+
| "NaN"
|
|
7372
7373
|
| "Number.EPSILON"
|
|
7374
|
+
| "Number.MAX_SAFE_INTEGER"
|
|
7375
|
+
| "Number.MAX_VALUE"
|
|
7376
|
+
| "Number.MIN_SAFE_INTEGER"
|
|
7377
|
+
| "Number.MIN_VALUE"
|
|
7378
|
+
| "Number.NEGATIVE_INFINITY"
|
|
7379
|
+
| "Number.NaN"
|
|
7380
|
+
| "Number.POSITIVE_INFINITY"
|
|
7373
7381
|
| "Number.isFinite"
|
|
7374
7382
|
| "Number.isInteger"
|
|
7375
7383
|
| "Number.isNaN"
|
|
7376
7384
|
| "Number.isSafeInteger"
|
|
7377
|
-
| "Number.MAX_SAFE_INTEGER"
|
|
7378
|
-
| "Number.MIN_SAFE_INTEGER"
|
|
7379
7385
|
| "Number.parseFloat"
|
|
7380
7386
|
| "Number.parseInt"
|
|
7387
|
+
| "Number.toLocaleString"
|
|
7381
7388
|
| "Object.assign"
|
|
7389
|
+
| "Object.create"
|
|
7390
|
+
| "Object.defineGetter"
|
|
7391
|
+
| "Object.defineProperties"
|
|
7392
|
+
| "Object.defineProperty"
|
|
7393
|
+
| "Object.defineSetter"
|
|
7394
|
+
| "Object.entries"
|
|
7395
|
+
| "Object.freeze"
|
|
7382
7396
|
| "Object.fromEntries"
|
|
7397
|
+
| "Object.getOwnPropertyDescriptor"
|
|
7398
|
+
| "Object.getOwnPropertyDescriptors"
|
|
7399
|
+
| "Object.getOwnPropertyNames"
|
|
7383
7400
|
| "Object.getOwnPropertySymbols"
|
|
7401
|
+
| "Object.getPrototypeOf"
|
|
7402
|
+
| "Object.groupBy"
|
|
7403
|
+
| "Object.hasOwn"
|
|
7384
7404
|
| "Object.is"
|
|
7405
|
+
| "Object.isExtensible"
|
|
7406
|
+
| "Object.isFrozen"
|
|
7407
|
+
| "Object.isSealed"
|
|
7408
|
+
| "Object.keys"
|
|
7409
|
+
| "Object.lookupGetter"
|
|
7410
|
+
| "Object.lookupSetter"
|
|
7411
|
+
| "Object.preventExtensions"
|
|
7412
|
+
| "Object.proto"
|
|
7413
|
+
| "Object.seal"
|
|
7385
7414
|
| "Object.setPrototypeOf"
|
|
7386
7415
|
| "Object.values"
|
|
7387
|
-
| "Object.entries"
|
|
7388
|
-
| "Object.getOwnPropertyDescriptors"
|
|
7389
7416
|
| "Promise"
|
|
7417
|
+
| "Promise.all"
|
|
7390
7418
|
| "Promise.allSettled"
|
|
7391
7419
|
| "Promise.any"
|
|
7420
|
+
| "Promise.race"
|
|
7421
|
+
| "Promise.reject"
|
|
7422
|
+
| "Promise.resolve"
|
|
7392
7423
|
| "Proxy"
|
|
7424
|
+
| "Proxy.revocable"
|
|
7425
|
+
| "RangeError"
|
|
7426
|
+
| "ReferenceError"
|
|
7393
7427
|
| "Reflect"
|
|
7428
|
+
| "Reflect.apply"
|
|
7429
|
+
| "Reflect.construct"
|
|
7430
|
+
| "Reflect.defineProperty"
|
|
7431
|
+
| "Reflect.deleteProperty"
|
|
7432
|
+
| "Reflect.get"
|
|
7433
|
+
| "Reflect.getOwnPropertyDescriptor"
|
|
7434
|
+
| "Reflect.getPrototypeOf"
|
|
7435
|
+
| "Reflect.has"
|
|
7436
|
+
| "Reflect.isExtensible"
|
|
7437
|
+
| "Reflect.ownKeys"
|
|
7438
|
+
| "Reflect.preventExtensions"
|
|
7439
|
+
| "Reflect.set"
|
|
7440
|
+
| "Reflect.setPrototypeOf"
|
|
7441
|
+
| "RegExp"
|
|
7442
|
+
| "RegExp.dotAll"
|
|
7443
|
+
| "RegExp.hasIndices"
|
|
7444
|
+
| "RegExp.input"
|
|
7445
|
+
| "RegExp.lastIndex"
|
|
7446
|
+
| "RegExp.lastMatch"
|
|
7447
|
+
| "RegExp.lastParen"
|
|
7448
|
+
| "RegExp.leftContext"
|
|
7449
|
+
| "RegExp.n"
|
|
7450
|
+
| "RegExp.rightContext"
|
|
7394
7451
|
| "Set"
|
|
7452
|
+
| "SharedArrayBuffer"
|
|
7453
|
+
| "String"
|
|
7454
|
+
| "String.fromCharCode"
|
|
7395
7455
|
| "String.fromCodePoint"
|
|
7456
|
+
| "String.length"
|
|
7457
|
+
| "String.localeCompare"
|
|
7396
7458
|
| "String.raw"
|
|
7459
|
+
| "String.toLocaleLowerCase"
|
|
7460
|
+
| "String.toLocaleUpperCase"
|
|
7397
7461
|
| "Symbol"
|
|
7398
|
-
| "
|
|
7399
|
-
| "
|
|
7400
|
-
| "
|
|
7401
|
-
| "
|
|
7462
|
+
| "Symbol.asyncIterator"
|
|
7463
|
+
| "Symbol.for"
|
|
7464
|
+
| "Symbol.hasInstance"
|
|
7465
|
+
| "Symbol.isConcatSpreadable"
|
|
7466
|
+
| "Symbol.iterator"
|
|
7467
|
+
| "Symbol.keyFor"
|
|
7468
|
+
| "Symbol.match"
|
|
7469
|
+
| "Symbol.matchAll"
|
|
7470
|
+
| "Symbol.replace"
|
|
7471
|
+
| "Symbol.search"
|
|
7472
|
+
| "Symbol.species"
|
|
7473
|
+
| "Symbol.split"
|
|
7474
|
+
| "Symbol.toPrimitive"
|
|
7475
|
+
| "Symbol.toStringTag"
|
|
7476
|
+
| "Symbol.unscopables"
|
|
7477
|
+
| "SyntaxError"
|
|
7478
|
+
| "TypeError"
|
|
7479
|
+
| "URIError"
|
|
7402
7480
|
| "Uint16Array"
|
|
7403
|
-
| "
|
|
7481
|
+
| "Uint16Array.BYTES_PER_ELEMENT"
|
|
7482
|
+
| "Uint16Array.from"
|
|
7483
|
+
| "Uint16Array.name"
|
|
7484
|
+
| "Uint16Array.of"
|
|
7404
7485
|
| "Uint32Array"
|
|
7405
|
-
| "
|
|
7406
|
-
| "
|
|
7407
|
-
| "
|
|
7408
|
-
| "
|
|
7409
|
-
| "
|
|
7486
|
+
| "Uint32Array.BYTES_PER_ELEMENT"
|
|
7487
|
+
| "Uint32Array.from"
|
|
7488
|
+
| "Uint32Array.name"
|
|
7489
|
+
| "Uint32Array.of"
|
|
7490
|
+
| "Uint8Array"
|
|
7491
|
+
| "Uint8Array.BYTES_PER_ELEMENT"
|
|
7492
|
+
| "Uint8Array.from"
|
|
7493
|
+
| "Uint8Array.name"
|
|
7494
|
+
| "Uint8Array.of"
|
|
7495
|
+
| "Uint8ClampedArray"
|
|
7496
|
+
| "Uint8ClampedArray.BYTES_PER_ELEMENT"
|
|
7497
|
+
| "Uint8ClampedArray.from"
|
|
7498
|
+
| "Uint8ClampedArray.name"
|
|
7499
|
+
| "Uint8ClampedArray.of"
|
|
7410
7500
|
| "WeakMap"
|
|
7411
7501
|
| "WeakRef"
|
|
7412
7502
|
| "WeakSet"
|
|
7413
|
-
| "
|
|
7414
|
-
| "
|
|
7503
|
+
| "decodeURI"
|
|
7504
|
+
| "decodeURIComponent"
|
|
7505
|
+
| "encodeURI"
|
|
7506
|
+
| "encodeURIComponent"
|
|
7507
|
+
| "escape"
|
|
7508
|
+
| "eval"
|
|
7415
7509
|
| "globalThis"
|
|
7510
|
+
| "isFinite"
|
|
7511
|
+
| "isNaN"
|
|
7512
|
+
| "parseFloat"
|
|
7513
|
+
| "parseInt"
|
|
7514
|
+
| "unescape"
|
|
7515
|
+
| "AbortController"
|
|
7516
|
+
| "AbortSignal"
|
|
7517
|
+
| "AbortSignal.abort"
|
|
7518
|
+
| "AbortSignal.any"
|
|
7519
|
+
| "AbortSignal.timeout"
|
|
7520
|
+
| "Blob"
|
|
7521
|
+
| "BroadcastChannel"
|
|
7522
|
+
| "ByteLengthQueuingStrategy"
|
|
7523
|
+
| "CompressionStream"
|
|
7524
|
+
| "CountQueuingStrategy"
|
|
7525
|
+
| "Crypto"
|
|
7526
|
+
| "CryptoKey"
|
|
7527
|
+
| "CustomEvent"
|
|
7528
|
+
| "DOMException"
|
|
7529
|
+
| "DecompressionStream"
|
|
7530
|
+
| "Event"
|
|
7531
|
+
| "EventTarget"
|
|
7532
|
+
| "FormData"
|
|
7533
|
+
| "Headers"
|
|
7534
|
+
| "MessageChannel"
|
|
7535
|
+
| "MessageEvent"
|
|
7536
|
+
| "MessagePort"
|
|
7537
|
+
| "Performance"
|
|
7538
|
+
| "PerformanceEntry"
|
|
7539
|
+
| "PerformanceMark"
|
|
7540
|
+
| "PerformanceMeasure"
|
|
7541
|
+
| "PerformanceObserver"
|
|
7542
|
+
| "PerformanceObserver.supportedEntryTypes"
|
|
7543
|
+
| "PerformanceObserverEntryList"
|
|
7544
|
+
| "ReadableByteStreamController"
|
|
7545
|
+
| "ReadableStream"
|
|
7546
|
+
| "ReadableStream.from"
|
|
7547
|
+
| "ReadableStreamBYOBReader"
|
|
7548
|
+
| "ReadableStreamBYOBRequest"
|
|
7549
|
+
| "ReadableStreamDefaultController"
|
|
7550
|
+
| "ReadableStreamDefaultReader"
|
|
7551
|
+
| "Request"
|
|
7552
|
+
| "Response"
|
|
7553
|
+
| "SubtleCrypto"
|
|
7554
|
+
| "TextDecoder"
|
|
7555
|
+
| "TextDecoderStream"
|
|
7556
|
+
| "TextEncoder"
|
|
7557
|
+
| "TextEncoderStream"
|
|
7558
|
+
| "TransformStream"
|
|
7559
|
+
| "TransformStreamDefaultController"
|
|
7560
|
+
| "URL"
|
|
7561
|
+
| "URL.canParse"
|
|
7562
|
+
| "URL.createObjectURL"
|
|
7563
|
+
| "URL.revokeObjectURL"
|
|
7564
|
+
| "URLSearchParams"
|
|
7565
|
+
| "Worker"
|
|
7566
|
+
| "WritableStream"
|
|
7567
|
+
| "WritableStreamDefaultController"
|
|
7568
|
+
| "WritableStreamDefaultWriter"
|
|
7569
|
+
| "atob"
|
|
7570
|
+
| "btoa"
|
|
7571
|
+
| "clearInterval"
|
|
7572
|
+
| "clearTimeout"
|
|
7573
|
+
| "console"
|
|
7574
|
+
| "console.assert"
|
|
7575
|
+
| "console.clear"
|
|
7576
|
+
| "console.countReset"
|
|
7577
|
+
| "console.count"
|
|
7578
|
+
| "console.debug"
|
|
7579
|
+
| "console.dir"
|
|
7580
|
+
| "console.dirxml"
|
|
7581
|
+
| "console.error"
|
|
7582
|
+
| "console.groupCollapsed"
|
|
7583
|
+
| "console.groupEnd"
|
|
7584
|
+
| "console.group"
|
|
7585
|
+
| "console.info"
|
|
7586
|
+
| "console.log"
|
|
7587
|
+
| "console.table"
|
|
7588
|
+
| "console.timeEnd"
|
|
7589
|
+
| "console.timeLog"
|
|
7590
|
+
| "console.time"
|
|
7591
|
+
| "console.trace"
|
|
7592
|
+
| "console.warn"
|
|
7593
|
+
| "fetch"
|
|
7594
|
+
| "queueMicrotask"
|
|
7595
|
+
| "setInterval"
|
|
7596
|
+
| "setTimeout"
|
|
7597
|
+
| "structuredClone"
|
|
7416
7598
|
)[];
|
|
7417
7599
|
},
|
|
7418
7600
|
];
|
|
@@ -7423,45 +7605,596 @@ type NNoUnsupportedFeaturesEsSyntax =
|
|
|
7423
7605
|
{
|
|
7424
7606
|
version?: string;
|
|
7425
7607
|
ignores?: (
|
|
7608
|
+
| "no-accessor-properties"
|
|
7609
|
+
| "accessor-properties"
|
|
7610
|
+
| "accessorProperties"
|
|
7611
|
+
| "no-arbitrary-module-namespace-names"
|
|
7612
|
+
| "arbitrary-module-namespace-names"
|
|
7613
|
+
| "arbitraryModuleNamespaceNames"
|
|
7614
|
+
| "no-array-from"
|
|
7615
|
+
| "array-from"
|
|
7616
|
+
| "arrayFrom"
|
|
7617
|
+
| "no-array-isarray"
|
|
7618
|
+
| "array-isarray"
|
|
7619
|
+
| "arrayIsarray"
|
|
7620
|
+
| "no-array-of"
|
|
7621
|
+
| "array-of"
|
|
7622
|
+
| "arrayOf"
|
|
7623
|
+
| "no-array-prototype-copywithin"
|
|
7624
|
+
| "array-prototype-copywithin"
|
|
7625
|
+
| "arrayPrototypeCopywithin"
|
|
7626
|
+
| "no-array-prototype-entries"
|
|
7627
|
+
| "array-prototype-entries"
|
|
7628
|
+
| "arrayPrototypeEntries"
|
|
7629
|
+
| "no-array-prototype-every"
|
|
7630
|
+
| "array-prototype-every"
|
|
7631
|
+
| "arrayPrototypeEvery"
|
|
7632
|
+
| "no-array-prototype-fill"
|
|
7633
|
+
| "array-prototype-fill"
|
|
7634
|
+
| "arrayPrototypeFill"
|
|
7635
|
+
| "no-array-prototype-filter"
|
|
7636
|
+
| "array-prototype-filter"
|
|
7637
|
+
| "arrayPrototypeFilter"
|
|
7638
|
+
| "no-array-prototype-find"
|
|
7639
|
+
| "array-prototype-find"
|
|
7640
|
+
| "arrayPrototypeFind"
|
|
7641
|
+
| "no-array-prototype-findindex"
|
|
7642
|
+
| "array-prototype-findindex"
|
|
7643
|
+
| "arrayPrototypeFindindex"
|
|
7644
|
+
| "no-array-prototype-findlast-findlastindex"
|
|
7645
|
+
| "array-prototype-findlast-findlastindex"
|
|
7646
|
+
| "arrayPrototypeFindlastFindlastindex"
|
|
7647
|
+
| "no-array-prototype-flat"
|
|
7648
|
+
| "array-prototype-flat"
|
|
7649
|
+
| "arrayPrototypeFlat"
|
|
7650
|
+
| "no-array-prototype-foreach"
|
|
7651
|
+
| "array-prototype-foreach"
|
|
7652
|
+
| "arrayPrototypeForeach"
|
|
7653
|
+
| "no-array-prototype-includes"
|
|
7654
|
+
| "array-prototype-includes"
|
|
7655
|
+
| "arrayPrototypeIncludes"
|
|
7656
|
+
| "no-array-prototype-indexof"
|
|
7657
|
+
| "array-prototype-indexof"
|
|
7658
|
+
| "arrayPrototypeIndexof"
|
|
7659
|
+
| "no-array-prototype-keys"
|
|
7660
|
+
| "array-prototype-keys"
|
|
7661
|
+
| "arrayPrototypeKeys"
|
|
7662
|
+
| "no-array-prototype-lastindexof"
|
|
7663
|
+
| "array-prototype-lastindexof"
|
|
7664
|
+
| "arrayPrototypeLastindexof"
|
|
7665
|
+
| "no-array-prototype-map"
|
|
7666
|
+
| "array-prototype-map"
|
|
7667
|
+
| "arrayPrototypeMap"
|
|
7668
|
+
| "no-array-prototype-reduce"
|
|
7669
|
+
| "array-prototype-reduce"
|
|
7670
|
+
| "arrayPrototypeReduce"
|
|
7671
|
+
| "no-array-prototype-reduceright"
|
|
7672
|
+
| "array-prototype-reduceright"
|
|
7673
|
+
| "arrayPrototypeReduceright"
|
|
7674
|
+
| "no-array-prototype-some"
|
|
7675
|
+
| "array-prototype-some"
|
|
7676
|
+
| "arrayPrototypeSome"
|
|
7677
|
+
| "no-array-prototype-toreversed"
|
|
7678
|
+
| "array-prototype-toreversed"
|
|
7679
|
+
| "arrayPrototypeToreversed"
|
|
7680
|
+
| "no-array-prototype-tosorted"
|
|
7681
|
+
| "array-prototype-tosorted"
|
|
7682
|
+
| "arrayPrototypeTosorted"
|
|
7683
|
+
| "no-array-prototype-tospliced"
|
|
7684
|
+
| "array-prototype-tospliced"
|
|
7685
|
+
| "arrayPrototypeTospliced"
|
|
7686
|
+
| "no-array-prototype-values"
|
|
7687
|
+
| "array-prototype-values"
|
|
7688
|
+
| "arrayPrototypeValues"
|
|
7689
|
+
| "no-array-prototype-with"
|
|
7690
|
+
| "array-prototype-with"
|
|
7691
|
+
| "arrayPrototypeWith"
|
|
7692
|
+
| "no-array-string-prototype-at"
|
|
7693
|
+
| "array-string-prototype-at"
|
|
7694
|
+
| "arrayStringPrototypeAt"
|
|
7695
|
+
| "no-arrow-functions"
|
|
7696
|
+
| "arrow-functions"
|
|
7426
7697
|
| "arrowFunctions"
|
|
7698
|
+
| "no-async-functions"
|
|
7699
|
+
| "async-functions"
|
|
7700
|
+
| "asyncFunctions"
|
|
7701
|
+
| "no-async-iteration"
|
|
7702
|
+
| "async-iteration"
|
|
7703
|
+
| "asyncIteration"
|
|
7704
|
+
| "no-atomics-waitasync"
|
|
7705
|
+
| "atomics-waitasync"
|
|
7706
|
+
| "atomicsWaitasync"
|
|
7707
|
+
| "no-atomics"
|
|
7708
|
+
| "atomics"
|
|
7709
|
+
| "no-bigint"
|
|
7710
|
+
| "bigint"
|
|
7711
|
+
| "no-binary-numeric-literals"
|
|
7712
|
+
| "binary-numeric-literals"
|
|
7427
7713
|
| "binaryNumericLiterals"
|
|
7714
|
+
| "no-block-scoped-functions"
|
|
7715
|
+
| "block-scoped-functions"
|
|
7428
7716
|
| "blockScopedFunctions"
|
|
7717
|
+
| "no-block-scoped-variables"
|
|
7718
|
+
| "block-scoped-variables"
|
|
7429
7719
|
| "blockScopedVariables"
|
|
7720
|
+
| "no-class-fields"
|
|
7721
|
+
| "class-fields"
|
|
7722
|
+
| "classFields"
|
|
7723
|
+
| "no-class-static-block"
|
|
7724
|
+
| "class-static-block"
|
|
7725
|
+
| "classStaticBlock"
|
|
7726
|
+
| "no-classes"
|
|
7430
7727
|
| "classes"
|
|
7728
|
+
| "no-computed-properties"
|
|
7729
|
+
| "computed-properties"
|
|
7431
7730
|
| "computedProperties"
|
|
7731
|
+
| "no-date-now"
|
|
7732
|
+
| "date-now"
|
|
7733
|
+
| "dateNow"
|
|
7734
|
+
| "no-date-prototype-getyear-setyear"
|
|
7735
|
+
| "date-prototype-getyear-setyear"
|
|
7736
|
+
| "datePrototypeGetyearSetyear"
|
|
7737
|
+
| "no-date-prototype-togmtstring"
|
|
7738
|
+
| "date-prototype-togmtstring"
|
|
7739
|
+
| "datePrototypeTogmtstring"
|
|
7740
|
+
| "no-default-parameters"
|
|
7741
|
+
| "default-parameters"
|
|
7432
7742
|
| "defaultParameters"
|
|
7743
|
+
| "no-destructuring"
|
|
7433
7744
|
| "destructuring"
|
|
7745
|
+
| "no-dynamic-import"
|
|
7746
|
+
| "dynamic-import"
|
|
7747
|
+
| "dynamicImport"
|
|
7748
|
+
| "no-error-cause"
|
|
7749
|
+
| "error-cause"
|
|
7750
|
+
| "errorCause"
|
|
7751
|
+
| "no-escape-unescape"
|
|
7752
|
+
| "escape-unescape"
|
|
7753
|
+
| "escapeUnescape"
|
|
7754
|
+
| "no-exponential-operators"
|
|
7755
|
+
| "exponential-operators"
|
|
7756
|
+
| "exponentialOperators"
|
|
7757
|
+
| "no-export-ns-from"
|
|
7758
|
+
| "export-ns-from"
|
|
7759
|
+
| "exportNsFrom"
|
|
7760
|
+
| "no-for-of-loops"
|
|
7761
|
+
| "for-of-loops"
|
|
7434
7762
|
| "forOfLoops"
|
|
7763
|
+
| "no-function-declarations-in-if-statement-clauses-without-block"
|
|
7764
|
+
| "function-declarations-in-if-statement-clauses-without-block"
|
|
7765
|
+
| "functionDeclarationsInIfStatementClausesWithoutBlock"
|
|
7766
|
+
| "no-function-prototype-bind"
|
|
7767
|
+
| "function-prototype-bind"
|
|
7768
|
+
| "functionPrototypeBind"
|
|
7769
|
+
| "no-generators"
|
|
7435
7770
|
| "generators"
|
|
7771
|
+
| "no-global-this"
|
|
7772
|
+
| "global-this"
|
|
7773
|
+
| "globalThis"
|
|
7774
|
+
| "no-hashbang"
|
|
7775
|
+
| "hashbang"
|
|
7776
|
+
| "no-import-meta"
|
|
7777
|
+
| "import-meta"
|
|
7778
|
+
| "importMeta"
|
|
7779
|
+
| "no-initializers-in-for-in"
|
|
7780
|
+
| "initializers-in-for-in"
|
|
7781
|
+
| "initializersInForIn"
|
|
7782
|
+
| "no-intl-datetimeformat-prototype-formatrange"
|
|
7783
|
+
| "intl-datetimeformat-prototype-formatrange"
|
|
7784
|
+
| "intlDatetimeformatPrototypeFormatrange"
|
|
7785
|
+
| "no-intl-datetimeformat-prototype-formattoparts"
|
|
7786
|
+
| "intl-datetimeformat-prototype-formattoparts"
|
|
7787
|
+
| "intlDatetimeformatPrototypeFormattoparts"
|
|
7788
|
+
| "no-intl-displaynames"
|
|
7789
|
+
| "intl-displaynames"
|
|
7790
|
+
| "intlDisplaynames"
|
|
7791
|
+
| "no-intl-getcanonicallocales"
|
|
7792
|
+
| "intl-getcanonicallocales"
|
|
7793
|
+
| "intlGetcanonicallocales"
|
|
7794
|
+
| "no-intl-listformat"
|
|
7795
|
+
| "intl-listformat"
|
|
7796
|
+
| "intlListformat"
|
|
7797
|
+
| "no-intl-locale"
|
|
7798
|
+
| "intl-locale"
|
|
7799
|
+
| "intlLocale"
|
|
7800
|
+
| "no-intl-numberformat-prototype-formatrange"
|
|
7801
|
+
| "intl-numberformat-prototype-formatrange"
|
|
7802
|
+
| "intlNumberformatPrototypeFormatrange"
|
|
7803
|
+
| "no-intl-numberformat-prototype-formatrangetoparts"
|
|
7804
|
+
| "intl-numberformat-prototype-formatrangetoparts"
|
|
7805
|
+
| "intlNumberformatPrototypeFormatrangetoparts"
|
|
7806
|
+
| "no-intl-numberformat-prototype-formattoparts"
|
|
7807
|
+
| "intl-numberformat-prototype-formattoparts"
|
|
7808
|
+
| "intlNumberformatPrototypeFormattoparts"
|
|
7809
|
+
| "no-intl-pluralrules-prototype-selectrange"
|
|
7810
|
+
| "intl-pluralrules-prototype-selectrange"
|
|
7811
|
+
| "intlPluralrulesPrototypeSelectrange"
|
|
7812
|
+
| "no-intl-pluralrules"
|
|
7813
|
+
| "intl-pluralrules"
|
|
7814
|
+
| "intlPluralrules"
|
|
7815
|
+
| "no-intl-relativetimeformat"
|
|
7816
|
+
| "intl-relativetimeformat"
|
|
7817
|
+
| "intlRelativetimeformat"
|
|
7818
|
+
| "no-intl-segmenter"
|
|
7819
|
+
| "intl-segmenter"
|
|
7820
|
+
| "intlSegmenter"
|
|
7821
|
+
| "no-intl-supportedvaluesof"
|
|
7822
|
+
| "intl-supportedvaluesof"
|
|
7823
|
+
| "intlSupportedvaluesof"
|
|
7824
|
+
| "no-json-superset"
|
|
7825
|
+
| "json-superset"
|
|
7826
|
+
| "jsonSuperset"
|
|
7827
|
+
| "no-json"
|
|
7828
|
+
| "json"
|
|
7829
|
+
| "no-keyword-properties"
|
|
7830
|
+
| "keyword-properties"
|
|
7831
|
+
| "keywordProperties"
|
|
7832
|
+
| "no-labelled-function-declarations"
|
|
7833
|
+
| "labelled-function-declarations"
|
|
7834
|
+
| "labelledFunctionDeclarations"
|
|
7835
|
+
| "no-legacy-object-prototype-accessor-methods"
|
|
7836
|
+
| "legacy-object-prototype-accessor-methods"
|
|
7837
|
+
| "legacyObjectPrototypeAccessorMethods"
|
|
7838
|
+
| "no-logical-assignment-operators"
|
|
7839
|
+
| "logical-assignment-operators"
|
|
7840
|
+
| "logicalAssignmentOperators"
|
|
7841
|
+
| "no-malformed-template-literals"
|
|
7842
|
+
| "malformed-template-literals"
|
|
7843
|
+
| "malformedTemplateLiterals"
|
|
7844
|
+
| "no-map"
|
|
7845
|
+
| "map"
|
|
7846
|
+
| "no-math-acosh"
|
|
7847
|
+
| "math-acosh"
|
|
7848
|
+
| "mathAcosh"
|
|
7849
|
+
| "no-math-asinh"
|
|
7850
|
+
| "math-asinh"
|
|
7851
|
+
| "mathAsinh"
|
|
7852
|
+
| "no-math-atanh"
|
|
7853
|
+
| "math-atanh"
|
|
7854
|
+
| "mathAtanh"
|
|
7855
|
+
| "no-math-cbrt"
|
|
7856
|
+
| "math-cbrt"
|
|
7857
|
+
| "mathCbrt"
|
|
7858
|
+
| "no-math-clz32"
|
|
7859
|
+
| "math-clz32"
|
|
7860
|
+
| "mathClz32"
|
|
7861
|
+
| "no-math-cosh"
|
|
7862
|
+
| "math-cosh"
|
|
7863
|
+
| "mathCosh"
|
|
7864
|
+
| "no-math-expm1"
|
|
7865
|
+
| "math-expm1"
|
|
7866
|
+
| "mathExpm1"
|
|
7867
|
+
| "no-math-fround"
|
|
7868
|
+
| "math-fround"
|
|
7869
|
+
| "mathFround"
|
|
7870
|
+
| "no-math-hypot"
|
|
7871
|
+
| "math-hypot"
|
|
7872
|
+
| "mathHypot"
|
|
7873
|
+
| "no-math-imul"
|
|
7874
|
+
| "math-imul"
|
|
7875
|
+
| "mathImul"
|
|
7876
|
+
| "no-math-log10"
|
|
7877
|
+
| "math-log10"
|
|
7878
|
+
| "mathLog10"
|
|
7879
|
+
| "no-math-log1p"
|
|
7880
|
+
| "math-log1p"
|
|
7881
|
+
| "mathLog1p"
|
|
7882
|
+
| "no-math-log2"
|
|
7883
|
+
| "math-log2"
|
|
7884
|
+
| "mathLog2"
|
|
7885
|
+
| "no-math-sign"
|
|
7886
|
+
| "math-sign"
|
|
7887
|
+
| "mathSign"
|
|
7888
|
+
| "no-math-sinh"
|
|
7889
|
+
| "math-sinh"
|
|
7890
|
+
| "mathSinh"
|
|
7891
|
+
| "no-math-tanh"
|
|
7892
|
+
| "math-tanh"
|
|
7893
|
+
| "mathTanh"
|
|
7894
|
+
| "no-math-trunc"
|
|
7895
|
+
| "math-trunc"
|
|
7896
|
+
| "mathTrunc"
|
|
7897
|
+
| "no-modules"
|
|
7436
7898
|
| "modules"
|
|
7899
|
+
| "no-new-target"
|
|
7900
|
+
| "new-target"
|
|
7901
|
+
| "newTarget"
|
|
7437
7902
|
| "new.target"
|
|
7903
|
+
| "no-nullish-coalescing-operators"
|
|
7904
|
+
| "nullish-coalescing-operators"
|
|
7905
|
+
| "nullishCoalescingOperators"
|
|
7906
|
+
| "no-number-epsilon"
|
|
7907
|
+
| "number-epsilon"
|
|
7908
|
+
| "numberEpsilon"
|
|
7909
|
+
| "no-number-isfinite"
|
|
7910
|
+
| "number-isfinite"
|
|
7911
|
+
| "numberIsfinite"
|
|
7912
|
+
| "no-number-isinteger"
|
|
7913
|
+
| "number-isinteger"
|
|
7914
|
+
| "numberIsinteger"
|
|
7915
|
+
| "no-number-isnan"
|
|
7916
|
+
| "number-isnan"
|
|
7917
|
+
| "numberIsnan"
|
|
7918
|
+
| "no-number-issafeinteger"
|
|
7919
|
+
| "number-issafeinteger"
|
|
7920
|
+
| "numberIssafeinteger"
|
|
7921
|
+
| "no-number-maxsafeinteger"
|
|
7922
|
+
| "number-maxsafeinteger"
|
|
7923
|
+
| "numberMaxsafeinteger"
|
|
7924
|
+
| "no-number-minsafeinteger"
|
|
7925
|
+
| "number-minsafeinteger"
|
|
7926
|
+
| "numberMinsafeinteger"
|
|
7927
|
+
| "no-number-parsefloat"
|
|
7928
|
+
| "number-parsefloat"
|
|
7929
|
+
| "numberParsefloat"
|
|
7930
|
+
| "no-number-parseint"
|
|
7931
|
+
| "number-parseint"
|
|
7932
|
+
| "numberParseint"
|
|
7933
|
+
| "no-numeric-separators"
|
|
7934
|
+
| "numeric-separators"
|
|
7935
|
+
| "numericSeparators"
|
|
7936
|
+
| "no-object-assign"
|
|
7937
|
+
| "object-assign"
|
|
7938
|
+
| "objectAssign"
|
|
7939
|
+
| "no-object-create"
|
|
7940
|
+
| "object-create"
|
|
7941
|
+
| "objectCreate"
|
|
7942
|
+
| "no-object-defineproperties"
|
|
7943
|
+
| "object-defineproperties"
|
|
7944
|
+
| "objectDefineproperties"
|
|
7945
|
+
| "no-object-defineproperty"
|
|
7946
|
+
| "object-defineproperty"
|
|
7947
|
+
| "objectDefineproperty"
|
|
7948
|
+
| "no-object-entries"
|
|
7949
|
+
| "object-entries"
|
|
7950
|
+
| "objectEntries"
|
|
7951
|
+
| "no-object-freeze"
|
|
7952
|
+
| "object-freeze"
|
|
7953
|
+
| "objectFreeze"
|
|
7954
|
+
| "no-object-fromentries"
|
|
7955
|
+
| "object-fromentries"
|
|
7956
|
+
| "objectFromentries"
|
|
7957
|
+
| "no-object-getownpropertydescriptor"
|
|
7958
|
+
| "object-getownpropertydescriptor"
|
|
7959
|
+
| "objectGetownpropertydescriptor"
|
|
7960
|
+
| "no-object-getownpropertydescriptors"
|
|
7961
|
+
| "object-getownpropertydescriptors"
|
|
7962
|
+
| "objectGetownpropertydescriptors"
|
|
7963
|
+
| "no-object-getownpropertynames"
|
|
7964
|
+
| "object-getownpropertynames"
|
|
7965
|
+
| "objectGetownpropertynames"
|
|
7966
|
+
| "no-object-getownpropertysymbols"
|
|
7967
|
+
| "object-getownpropertysymbols"
|
|
7968
|
+
| "objectGetownpropertysymbols"
|
|
7969
|
+
| "no-object-getprototypeof"
|
|
7970
|
+
| "object-getprototypeof"
|
|
7971
|
+
| "objectGetprototypeof"
|
|
7972
|
+
| "no-object-hasown"
|
|
7973
|
+
| "object-hasown"
|
|
7974
|
+
| "objectHasown"
|
|
7975
|
+
| "no-object-is"
|
|
7976
|
+
| "object-is"
|
|
7977
|
+
| "objectIs"
|
|
7978
|
+
| "no-object-isextensible"
|
|
7979
|
+
| "object-isextensible"
|
|
7980
|
+
| "objectIsextensible"
|
|
7981
|
+
| "no-object-isfrozen"
|
|
7982
|
+
| "object-isfrozen"
|
|
7983
|
+
| "objectIsfrozen"
|
|
7984
|
+
| "no-object-issealed"
|
|
7985
|
+
| "object-issealed"
|
|
7986
|
+
| "objectIssealed"
|
|
7987
|
+
| "no-object-keys"
|
|
7988
|
+
| "object-keys"
|
|
7989
|
+
| "objectKeys"
|
|
7990
|
+
| "no-object-map-groupby"
|
|
7991
|
+
| "object-map-groupby"
|
|
7992
|
+
| "objectMapGroupby"
|
|
7993
|
+
| "no-object-preventextensions"
|
|
7994
|
+
| "object-preventextensions"
|
|
7995
|
+
| "objectPreventextensions"
|
|
7996
|
+
| "no-object-seal"
|
|
7997
|
+
| "object-seal"
|
|
7998
|
+
| "objectSeal"
|
|
7999
|
+
| "no-object-setprototypeof"
|
|
8000
|
+
| "object-setprototypeof"
|
|
8001
|
+
| "objectSetprototypeof"
|
|
8002
|
+
| "no-object-super-properties"
|
|
8003
|
+
| "object-super-properties"
|
|
7438
8004
|
| "objectSuperProperties"
|
|
8005
|
+
| "no-object-values"
|
|
8006
|
+
| "object-values"
|
|
8007
|
+
| "objectValues"
|
|
8008
|
+
| "no-octal-numeric-literals"
|
|
8009
|
+
| "octal-numeric-literals"
|
|
7439
8010
|
| "octalNumericLiterals"
|
|
8011
|
+
| "no-optional-catch-binding"
|
|
8012
|
+
| "optional-catch-binding"
|
|
8013
|
+
| "optionalCatchBinding"
|
|
8014
|
+
| "no-optional-chaining"
|
|
8015
|
+
| "optional-chaining"
|
|
8016
|
+
| "optionalChaining"
|
|
8017
|
+
| "no-private-in"
|
|
8018
|
+
| "private-in"
|
|
8019
|
+
| "privateIn"
|
|
8020
|
+
| "no-promise-all-settled"
|
|
8021
|
+
| "promise-all-settled"
|
|
8022
|
+
| "promiseAllSettled"
|
|
8023
|
+
| "no-promise-any"
|
|
8024
|
+
| "promise-any"
|
|
8025
|
+
| "promiseAny"
|
|
8026
|
+
| "no-promise-prototype-finally"
|
|
8027
|
+
| "promise-prototype-finally"
|
|
8028
|
+
| "promisePrototypeFinally"
|
|
8029
|
+
| "no-promise-withresolvers"
|
|
8030
|
+
| "promise-withresolvers"
|
|
8031
|
+
| "promiseWithresolvers"
|
|
8032
|
+
| "no-promise"
|
|
8033
|
+
| "promise"
|
|
8034
|
+
| "no-property-shorthands"
|
|
8035
|
+
| "property-shorthands"
|
|
7440
8036
|
| "propertyShorthands"
|
|
8037
|
+
| "no-proxy"
|
|
8038
|
+
| "proxy"
|
|
8039
|
+
| "no-reflect"
|
|
8040
|
+
| "reflect"
|
|
8041
|
+
| "no-regexp-d-flag"
|
|
8042
|
+
| "regexp-d-flag"
|
|
8043
|
+
| "regexpDFlag"
|
|
8044
|
+
| "no-regexp-lookbehind-assertions"
|
|
8045
|
+
| "regexp-lookbehind-assertions"
|
|
8046
|
+
| "regexpLookbehindAssertions"
|
|
8047
|
+
| "regexpLookbehind"
|
|
8048
|
+
| "no-regexp-named-capture-groups"
|
|
8049
|
+
| "regexp-named-capture-groups"
|
|
8050
|
+
| "regexpNamedCaptureGroups"
|
|
8051
|
+
| "no-regexp-prototype-compile"
|
|
8052
|
+
| "regexp-prototype-compile"
|
|
8053
|
+
| "regexpPrototypeCompile"
|
|
8054
|
+
| "no-regexp-prototype-flags"
|
|
8055
|
+
| "regexp-prototype-flags"
|
|
8056
|
+
| "regexpPrototypeFlags"
|
|
8057
|
+
| "no-regexp-s-flag"
|
|
8058
|
+
| "regexp-s-flag"
|
|
8059
|
+
| "regexpSFlag"
|
|
8060
|
+
| "regexpS"
|
|
8061
|
+
| "no-regexp-u-flag"
|
|
8062
|
+
| "regexp-u-flag"
|
|
8063
|
+
| "regexpUFlag"
|
|
7441
8064
|
| "regexpU"
|
|
8065
|
+
| "no-regexp-unicode-property-escapes-2019"
|
|
8066
|
+
| "regexp-unicode-property-escapes-2019"
|
|
8067
|
+
| "regexpUnicodePropertyEscapes2019"
|
|
8068
|
+
| "no-regexp-unicode-property-escapes-2020"
|
|
8069
|
+
| "regexp-unicode-property-escapes-2020"
|
|
8070
|
+
| "regexpUnicodePropertyEscapes2020"
|
|
8071
|
+
| "no-regexp-unicode-property-escapes-2021"
|
|
8072
|
+
| "regexp-unicode-property-escapes-2021"
|
|
8073
|
+
| "regexpUnicodePropertyEscapes2021"
|
|
8074
|
+
| "no-regexp-unicode-property-escapes-2022"
|
|
8075
|
+
| "regexp-unicode-property-escapes-2022"
|
|
8076
|
+
| "regexpUnicodePropertyEscapes2022"
|
|
8077
|
+
| "no-regexp-unicode-property-escapes-2023"
|
|
8078
|
+
| "regexp-unicode-property-escapes-2023"
|
|
8079
|
+
| "regexpUnicodePropertyEscapes2023"
|
|
8080
|
+
| "no-regexp-unicode-property-escapes"
|
|
8081
|
+
| "regexp-unicode-property-escapes"
|
|
8082
|
+
| "regexpUnicodePropertyEscapes"
|
|
8083
|
+
| "regexpUnicodeProperties"
|
|
8084
|
+
| "no-regexp-v-flag"
|
|
8085
|
+
| "regexp-v-flag"
|
|
8086
|
+
| "regexpVFlag"
|
|
8087
|
+
| "no-regexp-y-flag"
|
|
8088
|
+
| "regexp-y-flag"
|
|
8089
|
+
| "regexpYFlag"
|
|
7442
8090
|
| "regexpY"
|
|
8091
|
+
| "no-resizable-and-growable-arraybuffers"
|
|
8092
|
+
| "resizable-and-growable-arraybuffers"
|
|
8093
|
+
| "resizableAndGrowableArraybuffers"
|
|
8094
|
+
| "no-rest-parameters"
|
|
8095
|
+
| "rest-parameters"
|
|
7443
8096
|
| "restParameters"
|
|
8097
|
+
| "no-rest-spread-properties"
|
|
8098
|
+
| "rest-spread-properties"
|
|
8099
|
+
| "restSpreadProperties"
|
|
8100
|
+
| "no-set"
|
|
8101
|
+
| "set"
|
|
8102
|
+
| "no-shadow-catch-param"
|
|
8103
|
+
| "shadow-catch-param"
|
|
8104
|
+
| "shadowCatchParam"
|
|
8105
|
+
| "no-shared-array-buffer"
|
|
8106
|
+
| "shared-array-buffer"
|
|
8107
|
+
| "sharedArrayBuffer"
|
|
8108
|
+
| "no-spread-elements"
|
|
8109
|
+
| "spread-elements"
|
|
7444
8110
|
| "spreadElements"
|
|
8111
|
+
| "no-string-create-html-methods"
|
|
8112
|
+
| "string-create-html-methods"
|
|
8113
|
+
| "stringCreateHtmlMethods"
|
|
8114
|
+
| "no-string-fromcodepoint"
|
|
8115
|
+
| "string-fromcodepoint"
|
|
8116
|
+
| "stringFromcodepoint"
|
|
8117
|
+
| "no-string-prototype-codepointat"
|
|
8118
|
+
| "string-prototype-codepointat"
|
|
8119
|
+
| "stringPrototypeCodepointat"
|
|
8120
|
+
| "no-string-prototype-endswith"
|
|
8121
|
+
| "string-prototype-endswith"
|
|
8122
|
+
| "stringPrototypeEndswith"
|
|
8123
|
+
| "no-string-prototype-includes"
|
|
8124
|
+
| "string-prototype-includes"
|
|
8125
|
+
| "stringPrototypeIncludes"
|
|
8126
|
+
| "no-string-prototype-iswellformed-towellformed"
|
|
8127
|
+
| "string-prototype-iswellformed-towellformed"
|
|
8128
|
+
| "stringPrototypeIswellformedTowellformed"
|
|
8129
|
+
| "no-string-prototype-matchall"
|
|
8130
|
+
| "string-prototype-matchall"
|
|
8131
|
+
| "stringPrototypeMatchall"
|
|
8132
|
+
| "no-string-prototype-normalize"
|
|
8133
|
+
| "string-prototype-normalize"
|
|
8134
|
+
| "stringPrototypeNormalize"
|
|
8135
|
+
| "no-string-prototype-padstart-padend"
|
|
8136
|
+
| "string-prototype-padstart-padend"
|
|
8137
|
+
| "stringPrototypePadstartPadend"
|
|
8138
|
+
| "no-string-prototype-repeat"
|
|
8139
|
+
| "string-prototype-repeat"
|
|
8140
|
+
| "stringPrototypeRepeat"
|
|
8141
|
+
| "no-string-prototype-replaceall"
|
|
8142
|
+
| "string-prototype-replaceall"
|
|
8143
|
+
| "stringPrototypeReplaceall"
|
|
8144
|
+
| "no-string-prototype-startswith"
|
|
8145
|
+
| "string-prototype-startswith"
|
|
8146
|
+
| "stringPrototypeStartswith"
|
|
8147
|
+
| "no-string-prototype-substr"
|
|
8148
|
+
| "string-prototype-substr"
|
|
8149
|
+
| "stringPrototypeSubstr"
|
|
8150
|
+
| "no-string-prototype-trim"
|
|
8151
|
+
| "string-prototype-trim"
|
|
8152
|
+
| "stringPrototypeTrim"
|
|
8153
|
+
| "no-string-prototype-trimleft-trimright"
|
|
8154
|
+
| "string-prototype-trimleft-trimright"
|
|
8155
|
+
| "stringPrototypeTrimleftTrimright"
|
|
8156
|
+
| "no-string-prototype-trimstart-trimend"
|
|
8157
|
+
| "string-prototype-trimstart-trimend"
|
|
8158
|
+
| "stringPrototypeTrimstartTrimend"
|
|
8159
|
+
| "no-string-raw"
|
|
8160
|
+
| "string-raw"
|
|
8161
|
+
| "stringRaw"
|
|
8162
|
+
| "no-subclassing-builtins"
|
|
8163
|
+
| "subclassing-builtins"
|
|
8164
|
+
| "subclassingBuiltins"
|
|
8165
|
+
| "no-symbol-prototype-description"
|
|
8166
|
+
| "symbol-prototype-description"
|
|
8167
|
+
| "symbolPrototypeDescription"
|
|
8168
|
+
| "no-symbol"
|
|
8169
|
+
| "symbol"
|
|
8170
|
+
| "no-template-literals"
|
|
8171
|
+
| "template-literals"
|
|
7445
8172
|
| "templateLiterals"
|
|
7446
|
-
| "
|
|
7447
|
-
| "
|
|
7448
|
-
| "
|
|
8173
|
+
| "no-top-level-await"
|
|
8174
|
+
| "top-level-await"
|
|
8175
|
+
| "topLevelAwait"
|
|
8176
|
+
| "no-trailing-commas"
|
|
8177
|
+
| "trailing-commas"
|
|
8178
|
+
| "trailingCommas"
|
|
8179
|
+
| "no-trailing-function-commas"
|
|
8180
|
+
| "trailing-function-commas"
|
|
8181
|
+
| "trailingFunctionCommas"
|
|
7449
8182
|
| "trailingCommasInFunctions"
|
|
7450
|
-
| "
|
|
7451
|
-
| "
|
|
7452
|
-
| "
|
|
7453
|
-
| "
|
|
7454
|
-
| "
|
|
7455
|
-
| "
|
|
7456
|
-
| "
|
|
7457
|
-
| "
|
|
7458
|
-
| "
|
|
7459
|
-
| "
|
|
7460
|
-
| "
|
|
7461
|
-
| "
|
|
7462
|
-
| "
|
|
7463
|
-
| "
|
|
7464
|
-
| "
|
|
8183
|
+
| "no-typed-arrays"
|
|
8184
|
+
| "typed-arrays"
|
|
8185
|
+
| "typedArrays"
|
|
8186
|
+
| "no-unicode-codepoint-escapes"
|
|
8187
|
+
| "unicode-codepoint-escapes"
|
|
8188
|
+
| "unicodeCodepointEscapes"
|
|
8189
|
+
| "unicodeCodePointEscapes"
|
|
8190
|
+
| "no-weak-map"
|
|
8191
|
+
| "weak-map"
|
|
8192
|
+
| "weakMap"
|
|
8193
|
+
| "no-weak-set"
|
|
8194
|
+
| "weak-set"
|
|
8195
|
+
| "weakSet"
|
|
8196
|
+
| "no-weakrefs"
|
|
8197
|
+
| "weakrefs"
|
|
7465
8198
|
)[];
|
|
7466
8199
|
},
|
|
7467
8200
|
];
|
|
@@ -7474,176 +8207,1251 @@ type NNoUnsupportedFeaturesNodeBuiltins =
|
|
|
7474
8207
|
ignores?: (
|
|
7475
8208
|
| "queueMicrotask"
|
|
7476
8209
|
| "require.resolve.paths"
|
|
8210
|
+
| "Buffer"
|
|
7477
8211
|
| "Buffer.alloc"
|
|
7478
8212
|
| "Buffer.allocUnsafe"
|
|
7479
8213
|
| "Buffer.allocUnsafeSlow"
|
|
8214
|
+
| "Buffer.byteLength"
|
|
8215
|
+
| "Buffer.compare"
|
|
8216
|
+
| "Buffer.concat"
|
|
8217
|
+
| "Buffer.copyBytesFrom"
|
|
7480
8218
|
| "Buffer.from"
|
|
8219
|
+
| "Buffer.isBuffer"
|
|
8220
|
+
| "Buffer.isEncoding"
|
|
7481
8221
|
| "TextDecoder"
|
|
7482
8222
|
| "TextEncoder"
|
|
7483
8223
|
| "URL"
|
|
8224
|
+
| "URL.canParse"
|
|
8225
|
+
| "URL.createObjectURL"
|
|
8226
|
+
| "URL.revokeObjectURL"
|
|
7484
8227
|
| "URLSearchParams"
|
|
8228
|
+
| "console"
|
|
8229
|
+
| "console.profile"
|
|
8230
|
+
| "console.profileEnd"
|
|
8231
|
+
| "console.timeStamp"
|
|
8232
|
+
| "console.Console"
|
|
8233
|
+
| "console.assert"
|
|
7485
8234
|
| "console.clear"
|
|
7486
8235
|
| "console.count"
|
|
7487
8236
|
| "console.countReset"
|
|
7488
8237
|
| "console.debug"
|
|
8238
|
+
| "console.dir"
|
|
7489
8239
|
| "console.dirxml"
|
|
8240
|
+
| "console.error"
|
|
7490
8241
|
| "console.group"
|
|
7491
8242
|
| "console.groupCollapsed"
|
|
7492
8243
|
| "console.groupEnd"
|
|
8244
|
+
| "console.info"
|
|
8245
|
+
| "console.log"
|
|
7493
8246
|
| "console.table"
|
|
7494
|
-
| "console.
|
|
7495
|
-
| "console.
|
|
7496
|
-
| "console.profileEnd"
|
|
8247
|
+
| "console.time"
|
|
8248
|
+
| "console.timeEnd"
|
|
7497
8249
|
| "console.timeLog"
|
|
7498
|
-
| "console.
|
|
7499
|
-
| "console.
|
|
7500
|
-
| "
|
|
8250
|
+
| "console.trace"
|
|
8251
|
+
| "console.warn"
|
|
8252
|
+
| "process"
|
|
7501
8253
|
| "process.allowedNodeEnvironmentFlags"
|
|
8254
|
+
| "process.arch"
|
|
8255
|
+
| "process.argv"
|
|
7502
8256
|
| "process.argv0"
|
|
7503
8257
|
| "process.channel"
|
|
8258
|
+
| "process.config"
|
|
8259
|
+
| "process.connected"
|
|
8260
|
+
| "process.debugPort"
|
|
8261
|
+
| "process.env"
|
|
8262
|
+
| "process.execArgv"
|
|
8263
|
+
| "process.execPath"
|
|
8264
|
+
| "process.exitCode"
|
|
8265
|
+
| "process.mainModule"
|
|
8266
|
+
| "process.noDeprecation"
|
|
8267
|
+
| "process.permission"
|
|
8268
|
+
| "process.pid"
|
|
8269
|
+
| "process.platform"
|
|
8270
|
+
| "process.ppid"
|
|
8271
|
+
| "process.release"
|
|
8272
|
+
| "process.report"
|
|
8273
|
+
| "process.sourceMapsEnabled"
|
|
8274
|
+
| "process.stdin"
|
|
8275
|
+
| "process.stdin.isRaw"
|
|
8276
|
+
| "process.stdin.isTTY"
|
|
8277
|
+
| "process.stdin.setRawMode"
|
|
8278
|
+
| "process.stdout"
|
|
8279
|
+
| "process.stdout.clearLine"
|
|
8280
|
+
| "process.stdout.clearScreenDown"
|
|
8281
|
+
| "process.stdout.columns"
|
|
8282
|
+
| "process.stdout.cursorTo"
|
|
8283
|
+
| "process.stdout.getColorDepth"
|
|
8284
|
+
| "process.stdout.getWindowSize"
|
|
8285
|
+
| "process.stdout.hasColors"
|
|
8286
|
+
| "process.stdout.isTTY"
|
|
8287
|
+
| "process.stdout.moveCursor"
|
|
8288
|
+
| "process.stdout.rows"
|
|
8289
|
+
| "process.stderr"
|
|
8290
|
+
| "process.stderr.clearLine"
|
|
8291
|
+
| "process.stderr.clearScreenDown"
|
|
8292
|
+
| "process.stderr.columns"
|
|
8293
|
+
| "process.stderr.cursorTo"
|
|
8294
|
+
| "process.stderr.getColorDepth"
|
|
8295
|
+
| "process.stderr.getWindowSize"
|
|
8296
|
+
| "process.stderr.hasColors"
|
|
8297
|
+
| "process.stderr.isTTY"
|
|
8298
|
+
| "process.stderr.moveCursor"
|
|
8299
|
+
| "process.stderr.rows"
|
|
8300
|
+
| "process.throwDeprecation"
|
|
8301
|
+
| "process.title"
|
|
8302
|
+
| "process.traceDeprecation"
|
|
8303
|
+
| "process.version"
|
|
8304
|
+
| "process.versions"
|
|
8305
|
+
| "process.abort"
|
|
8306
|
+
| "process.chdir"
|
|
8307
|
+
| "process.constrainedMemory"
|
|
7504
8308
|
| "process.cpuUsage"
|
|
8309
|
+
| "process.cwd"
|
|
8310
|
+
| "process.disconnect"
|
|
8311
|
+
| "process.dlopen"
|
|
7505
8312
|
| "process.emitWarning"
|
|
8313
|
+
| "process.exit"
|
|
8314
|
+
| "process.getActiveResourcesInfo"
|
|
7506
8315
|
| "process.getegid"
|
|
7507
8316
|
| "process.geteuid"
|
|
8317
|
+
| "process.getgid"
|
|
8318
|
+
| "process.getgroups"
|
|
8319
|
+
| "process.getuid"
|
|
7508
8320
|
| "process.hasUncaughtExceptionCaptureCallback"
|
|
8321
|
+
| "process.hrtime"
|
|
7509
8322
|
| "process.hrtime.bigint"
|
|
7510
|
-
| "process.
|
|
7511
|
-
| "process.
|
|
7512
|
-
| "process.
|
|
8323
|
+
| "process.initgroups"
|
|
8324
|
+
| "process.kill"
|
|
8325
|
+
| "process.loadEnvFile"
|
|
8326
|
+
| "process.memoryUsage"
|
|
8327
|
+
| "process.rss"
|
|
8328
|
+
| "process.nextTick"
|
|
7513
8329
|
| "process.resourceUsage"
|
|
8330
|
+
| "process.send"
|
|
7514
8331
|
| "process.setegid"
|
|
7515
8332
|
| "process.seteuid"
|
|
8333
|
+
| "process.setgid"
|
|
8334
|
+
| "process.setgroups"
|
|
8335
|
+
| "process.setuid"
|
|
8336
|
+
| "process.setSourceMapsEnabled"
|
|
7516
8337
|
| "process.setUncaughtExceptionCaptureCallback"
|
|
7517
|
-
| "process.
|
|
7518
|
-
| "process.
|
|
7519
|
-
| "
|
|
7520
|
-
| "
|
|
7521
|
-
| "assert.
|
|
7522
|
-
| "assert.strict.doesNotReject"
|
|
7523
|
-
| "assert.strict.rejects"
|
|
8338
|
+
| "process.umask"
|
|
8339
|
+
| "process.uptime"
|
|
8340
|
+
| "assert"
|
|
8341
|
+
| "assert.assert"
|
|
8342
|
+
| "assert.deepEqual"
|
|
7524
8343
|
| "assert.deepStrictEqual"
|
|
8344
|
+
| "assert.doesNotMatch"
|
|
7525
8345
|
| "assert.doesNotReject"
|
|
8346
|
+
| "assert.doesNotThrow"
|
|
8347
|
+
| "assert.equal"
|
|
8348
|
+
| "assert.fail"
|
|
8349
|
+
| "assert.ifError"
|
|
8350
|
+
| "assert.match"
|
|
8351
|
+
| "assert.notDeepEqual"
|
|
7526
8352
|
| "assert.notDeepStrictEqual"
|
|
8353
|
+
| "assert.notEqual"
|
|
8354
|
+
| "assert.notStrictEqual"
|
|
8355
|
+
| "assert.ok"
|
|
7527
8356
|
| "assert.rejects"
|
|
8357
|
+
| "assert.strictEqual"
|
|
8358
|
+
| "assert.throws"
|
|
7528
8359
|
| "assert.CallTracker"
|
|
8360
|
+
| "assert.strict"
|
|
8361
|
+
| "assert.strict.assert"
|
|
8362
|
+
| "assert.strict.deepEqual"
|
|
8363
|
+
| "assert.strict.deepStrictEqual"
|
|
8364
|
+
| "assert.strict.doesNotMatch"
|
|
8365
|
+
| "assert.strict.doesNotReject"
|
|
8366
|
+
| "assert.strict.doesNotThrow"
|
|
8367
|
+
| "assert.strict.equal"
|
|
8368
|
+
| "assert.strict.fail"
|
|
8369
|
+
| "assert.strict.ifError"
|
|
8370
|
+
| "assert.strict.match"
|
|
8371
|
+
| "assert.strict.notDeepEqual"
|
|
8372
|
+
| "assert.strict.notDeepStrictEqual"
|
|
8373
|
+
| "assert.strict.notEqual"
|
|
8374
|
+
| "assert.strict.notStrictEqual"
|
|
8375
|
+
| "assert.strict.ok"
|
|
8376
|
+
| "assert.strict.rejects"
|
|
8377
|
+
| "assert.strict.strictEqual"
|
|
8378
|
+
| "assert.strict.throws"
|
|
8379
|
+
| "assert.strict.CallTracker"
|
|
8380
|
+
| "assert/strict"
|
|
8381
|
+
| "assert/strict.assert"
|
|
8382
|
+
| "assert/strict.deepEqual"
|
|
8383
|
+
| "assert/strict.deepStrictEqual"
|
|
8384
|
+
| "assert/strict.doesNotMatch"
|
|
8385
|
+
| "assert/strict.doesNotReject"
|
|
8386
|
+
| "assert/strict.doesNotThrow"
|
|
8387
|
+
| "assert/strict.equal"
|
|
8388
|
+
| "assert/strict.fail"
|
|
8389
|
+
| "assert/strict.ifError"
|
|
8390
|
+
| "assert/strict.match"
|
|
8391
|
+
| "assert/strict.notDeepEqual"
|
|
8392
|
+
| "assert/strict.notDeepStrictEqual"
|
|
8393
|
+
| "assert/strict.notEqual"
|
|
8394
|
+
| "assert/strict.notStrictEqual"
|
|
8395
|
+
| "assert/strict.ok"
|
|
8396
|
+
| "assert/strict.rejects"
|
|
8397
|
+
| "assert/strict.strictEqual"
|
|
8398
|
+
| "assert/strict.throws"
|
|
8399
|
+
| "assert/strict.CallTracker"
|
|
7529
8400
|
| "async_hooks"
|
|
7530
8401
|
| "async_hooks.createHook"
|
|
8402
|
+
| "async_hooks.executionAsyncResource"
|
|
8403
|
+
| "async_hooks.executionAsyncId"
|
|
8404
|
+
| "async_hooks.triggerAsyncId"
|
|
7531
8405
|
| "async_hooks.AsyncLocalStorage"
|
|
8406
|
+
| "async_hooks.AsyncLocalStorage.bind"
|
|
8407
|
+
| "async_hooks.AsyncLocalStorage.snapshot"
|
|
8408
|
+
| "async_hooks.AsyncResource"
|
|
8409
|
+
| "async_hooks.AsyncResource.bind"
|
|
8410
|
+
| "buffer"
|
|
8411
|
+
| "buffer.constants"
|
|
8412
|
+
| "buffer.INSPECT_MAX_BYTES"
|
|
8413
|
+
| "buffer.kMaxLength"
|
|
8414
|
+
| "buffer.kStringMaxLength"
|
|
8415
|
+
| "buffer.atob"
|
|
8416
|
+
| "buffer.btoa"
|
|
8417
|
+
| "buffer.isAscii"
|
|
8418
|
+
| "buffer.isUtf8"
|
|
8419
|
+
| "buffer.resolveObjectURL"
|
|
8420
|
+
| "buffer.transcode"
|
|
8421
|
+
| "buffer.SlowBuffer"
|
|
8422
|
+
| "buffer.Blob"
|
|
8423
|
+
| "buffer.Buffer"
|
|
7532
8424
|
| "buffer.Buffer.alloc"
|
|
7533
8425
|
| "buffer.Buffer.allocUnsafe"
|
|
7534
8426
|
| "buffer.Buffer.allocUnsafeSlow"
|
|
8427
|
+
| "buffer.Buffer.byteLength"
|
|
8428
|
+
| "buffer.Buffer.compare"
|
|
8429
|
+
| "buffer.Buffer.concat"
|
|
8430
|
+
| "buffer.Buffer.copyBytesFrom"
|
|
7535
8431
|
| "buffer.Buffer.from"
|
|
7536
|
-
| "buffer.
|
|
7537
|
-
| "buffer.
|
|
7538
|
-
| "buffer.
|
|
7539
|
-
| "
|
|
8432
|
+
| "buffer.Buffer.isBuffer"
|
|
8433
|
+
| "buffer.Buffer.isEncoding"
|
|
8434
|
+
| "buffer.File"
|
|
8435
|
+
| "child_process"
|
|
8436
|
+
| "child_process.exec"
|
|
8437
|
+
| "child_process.execFile"
|
|
8438
|
+
| "child_process.fork"
|
|
8439
|
+
| "child_process.spawn"
|
|
8440
|
+
| "child_process.execFileSync"
|
|
8441
|
+
| "child_process.execSync"
|
|
8442
|
+
| "child_process.spawnSync"
|
|
7540
8443
|
| "child_process.ChildProcess"
|
|
7541
|
-
| "
|
|
7542
|
-
| "
|
|
7543
|
-
| "
|
|
7544
|
-
| "
|
|
7545
|
-
| "
|
|
8444
|
+
| "cluster"
|
|
8445
|
+
| "cluster.isMaster"
|
|
8446
|
+
| "cluster.isPrimary"
|
|
8447
|
+
| "cluster.isWorker"
|
|
8448
|
+
| "cluster.schedulingPolicy"
|
|
8449
|
+
| "cluster.settings"
|
|
8450
|
+
| "cluster.worker"
|
|
8451
|
+
| "cluster.workers"
|
|
8452
|
+
| "cluster.disconnect"
|
|
8453
|
+
| "cluster.fork"
|
|
8454
|
+
| "cluster.setupMaster"
|
|
8455
|
+
| "cluster.setupPrimary"
|
|
8456
|
+
| "cluster.Worker"
|
|
8457
|
+
| "crypto"
|
|
8458
|
+
| "crypto.constants"
|
|
8459
|
+
| "crypto.fips"
|
|
8460
|
+
| "crypto.webcrypto"
|
|
8461
|
+
| "crypto.webcrypto.subtle"
|
|
8462
|
+
| "crypto.webcrypto.subtle.decrypt"
|
|
8463
|
+
| "crypto.webcrypto.subtle.deriveBits"
|
|
8464
|
+
| "crypto.webcrypto.subtle.deriveKey"
|
|
8465
|
+
| "crypto.webcrypto.subtle.digest"
|
|
8466
|
+
| "crypto.webcrypto.subtle.encrypt"
|
|
8467
|
+
| "crypto.webcrypto.subtle.exportKey"
|
|
8468
|
+
| "crypto.webcrypto.subtle.generateKey"
|
|
8469
|
+
| "crypto.webcrypto.subtle.importKey"
|
|
8470
|
+
| "crypto.webcrypto.subtle.sign"
|
|
8471
|
+
| "crypto.webcrypto.subtle.unwrapKey"
|
|
8472
|
+
| "crypto.webcrypto.subtle.verify"
|
|
8473
|
+
| "crypto.webcrypto.subtle.wrapKey"
|
|
8474
|
+
| "crypto.webcrypto.getRandomValues"
|
|
8475
|
+
| "crypto.webcrypto.randomUUID"
|
|
8476
|
+
| "crypto.subtle"
|
|
8477
|
+
| "crypto.subtle.decrypt"
|
|
8478
|
+
| "crypto.subtle.deriveBits"
|
|
8479
|
+
| "crypto.subtle.deriveKey"
|
|
8480
|
+
| "crypto.subtle.digest"
|
|
8481
|
+
| "crypto.subtle.encrypt"
|
|
8482
|
+
| "crypto.subtle.exportKey"
|
|
8483
|
+
| "crypto.subtle.generateKey"
|
|
8484
|
+
| "crypto.subtle.importKey"
|
|
8485
|
+
| "crypto.subtle.sign"
|
|
8486
|
+
| "crypto.subtle.unwrapKey"
|
|
8487
|
+
| "crypto.subtle.verify"
|
|
8488
|
+
| "crypto.subtle.wrapKey"
|
|
8489
|
+
| "crypto.checkPrime"
|
|
8490
|
+
| "crypto.checkPrimeSync"
|
|
8491
|
+
| "crypto.createCipher"
|
|
8492
|
+
| "crypto.createCipheriv"
|
|
8493
|
+
| "crypto.createDecipher"
|
|
8494
|
+
| "crypto.createDecipheriv"
|
|
8495
|
+
| "crypto.createDiffieHellman"
|
|
8496
|
+
| "crypto.createDiffieHellmanGroup"
|
|
8497
|
+
| "crypto.createECDH"
|
|
8498
|
+
| "crypto.createHash"
|
|
8499
|
+
| "crypto.createHmac"
|
|
7546
8500
|
| "crypto.createPrivateKey"
|
|
7547
8501
|
| "crypto.createPublicKey"
|
|
7548
8502
|
| "crypto.createSecretKey"
|
|
7549
|
-
| "crypto.
|
|
7550
|
-
| "crypto.
|
|
8503
|
+
| "crypto.createSign"
|
|
8504
|
+
| "crypto.createVerify"
|
|
8505
|
+
| "crypto.diffieHellman"
|
|
8506
|
+
| "crypto.generateKey"
|
|
7551
8507
|
| "crypto.generateKeyPair"
|
|
7552
8508
|
| "crypto.generateKeyPairSync"
|
|
8509
|
+
| "crypto.generateKeySync"
|
|
8510
|
+
| "crypto.generatePrime"
|
|
8511
|
+
| "crypto.generatePrimeSync"
|
|
8512
|
+
| "crypto.getCipherInfo"
|
|
8513
|
+
| "crypto.getCiphers"
|
|
7553
8514
|
| "crypto.getCurves"
|
|
8515
|
+
| "crypto.getDiffieHellman"
|
|
7554
8516
|
| "crypto.getFips"
|
|
8517
|
+
| "crypto.getHashes"
|
|
8518
|
+
| "crypto.getRandomValues"
|
|
8519
|
+
| "crypto.hash"
|
|
8520
|
+
| "crypto.hkdf"
|
|
8521
|
+
| "crypto.hkdfSync"
|
|
8522
|
+
| "crypto.pbkdf2"
|
|
8523
|
+
| "crypto.pbkdf2Sync"
|
|
8524
|
+
| "crypto.privateDecrypt"
|
|
7555
8525
|
| "crypto.privateEncrypt"
|
|
7556
8526
|
| "crypto.publicDecrypt"
|
|
8527
|
+
| "crypto.publicEncrypt"
|
|
8528
|
+
| "crypto.randomBytes"
|
|
7557
8529
|
| "crypto.randomFillSync"
|
|
7558
8530
|
| "crypto.randomFill"
|
|
8531
|
+
| "crypto.randomInt"
|
|
8532
|
+
| "crypto.randomUUID"
|
|
7559
8533
|
| "crypto.scrypt"
|
|
7560
8534
|
| "crypto.scryptSync"
|
|
8535
|
+
| "crypto.secureHeapUsed"
|
|
8536
|
+
| "crypto.setEngine"
|
|
7561
8537
|
| "crypto.setFips"
|
|
7562
8538
|
| "crypto.sign"
|
|
7563
8539
|
| "crypto.timingSafeEqual"
|
|
7564
8540
|
| "crypto.verify"
|
|
8541
|
+
| "crypto.Certificate"
|
|
8542
|
+
| "crypto.Certificate.exportChallenge"
|
|
8543
|
+
| "crypto.Certificate.exportPublicKey"
|
|
8544
|
+
| "crypto.Certificate.verifySpkac"
|
|
8545
|
+
| "crypto.Cipher"
|
|
8546
|
+
| "crypto.Decipher"
|
|
8547
|
+
| "crypto.DiffieHellman"
|
|
8548
|
+
| "crypto.DiffieHellmanGroup"
|
|
8549
|
+
| "crypto.ECDH"
|
|
8550
|
+
| "crypto.ECDH.convertKey"
|
|
8551
|
+
| "crypto.Hash"
|
|
8552
|
+
| "crypto.Hmac"
|
|
8553
|
+
| "crypto.KeyObject"
|
|
8554
|
+
| "crypto.KeyObject.from"
|
|
8555
|
+
| "crypto.Sign"
|
|
8556
|
+
| "crypto.Verify"
|
|
8557
|
+
| "crypto.X509Certificate"
|
|
8558
|
+
| "dgram"
|
|
8559
|
+
| "dgram.createSocket"
|
|
8560
|
+
| "dgram.Socket"
|
|
8561
|
+
| "diagnostics_channel"
|
|
8562
|
+
| "diagnostics_channel.hasSubscribers"
|
|
8563
|
+
| "diagnostics_channel.channel"
|
|
8564
|
+
| "diagnostics_channel.subscribe"
|
|
8565
|
+
| "diagnostics_channel.unsubscribe"
|
|
8566
|
+
| "diagnostics_channel.tracingChannel"
|
|
8567
|
+
| "diagnostics_channel.Channel"
|
|
8568
|
+
| "diagnostics_channel.TracingChannel"
|
|
8569
|
+
| "dns"
|
|
7565
8570
|
| "dns.Resolver"
|
|
8571
|
+
| "dns.getServers"
|
|
8572
|
+
| "dns.lookup"
|
|
8573
|
+
| "dns.lookupService"
|
|
8574
|
+
| "dns.resolve"
|
|
8575
|
+
| "dns.resolve4"
|
|
8576
|
+
| "dns.resolve6"
|
|
8577
|
+
| "dns.resolveAny"
|
|
8578
|
+
| "dns.resolveCname"
|
|
8579
|
+
| "dns.resolveCaa"
|
|
8580
|
+
| "dns.resolveMx"
|
|
8581
|
+
| "dns.resolveNaptr"
|
|
8582
|
+
| "dns.resolveNs"
|
|
7566
8583
|
| "dns.resolvePtr"
|
|
8584
|
+
| "dns.resolveSoa"
|
|
8585
|
+
| "dns.resolveSrv"
|
|
8586
|
+
| "dns.resolveTxt"
|
|
8587
|
+
| "dns.reverse"
|
|
8588
|
+
| "dns.setDefaultResultOrder"
|
|
8589
|
+
| "dns.getDefaultResultOrder"
|
|
8590
|
+
| "dns.setServers"
|
|
7567
8591
|
| "dns.promises"
|
|
8592
|
+
| "dns.promises.Resolver"
|
|
8593
|
+
| "dns.promises.cancel"
|
|
8594
|
+
| "dns.promises.getServers"
|
|
8595
|
+
| "dns.promises.lookup"
|
|
8596
|
+
| "dns.promises.lookupService"
|
|
8597
|
+
| "dns.promises.resolve"
|
|
8598
|
+
| "dns.promises.resolve4"
|
|
8599
|
+
| "dns.promises.resolve6"
|
|
8600
|
+
| "dns.promises.resolveAny"
|
|
8601
|
+
| "dns.promises.resolveCaa"
|
|
8602
|
+
| "dns.promises.resolveCname"
|
|
8603
|
+
| "dns.promises.resolveMx"
|
|
8604
|
+
| "dns.promises.resolveNaptr"
|
|
8605
|
+
| "dns.promises.resolveNs"
|
|
8606
|
+
| "dns.promises.resolvePtr"
|
|
8607
|
+
| "dns.promises.resolveSoa"
|
|
8608
|
+
| "dns.promises.resolveSrv"
|
|
8609
|
+
| "dns.promises.resolveTxt"
|
|
8610
|
+
| "dns.promises.reverse"
|
|
8611
|
+
| "dns.promises.setDefaultResultOrder"
|
|
8612
|
+
| "dns.promises.getDefaultResultOrder"
|
|
8613
|
+
| "dns.promises.setServers"
|
|
8614
|
+
| "dns/promises"
|
|
8615
|
+
| "dns/promises.Resolver"
|
|
8616
|
+
| "dns/promises.cancel"
|
|
8617
|
+
| "dns/promises.getServers"
|
|
8618
|
+
| "dns/promises.lookup"
|
|
8619
|
+
| "dns/promises.lookupService"
|
|
8620
|
+
| "dns/promises.resolve"
|
|
8621
|
+
| "dns/promises.resolve4"
|
|
8622
|
+
| "dns/promises.resolve6"
|
|
8623
|
+
| "dns/promises.resolveAny"
|
|
8624
|
+
| "dns/promises.resolveCaa"
|
|
8625
|
+
| "dns/promises.resolveCname"
|
|
8626
|
+
| "dns/promises.resolveMx"
|
|
8627
|
+
| "dns/promises.resolveNaptr"
|
|
8628
|
+
| "dns/promises.resolveNs"
|
|
8629
|
+
| "dns/promises.resolvePtr"
|
|
8630
|
+
| "dns/promises.resolveSoa"
|
|
8631
|
+
| "dns/promises.resolveSrv"
|
|
8632
|
+
| "dns/promises.resolveTxt"
|
|
8633
|
+
| "dns/promises.reverse"
|
|
8634
|
+
| "dns/promises.setDefaultResultOrder"
|
|
8635
|
+
| "dns/promises.getDefaultResultOrder"
|
|
8636
|
+
| "dns/promises.setServers"
|
|
8637
|
+
| "domain"
|
|
8638
|
+
| "domain.create"
|
|
8639
|
+
| "domain.Domain"
|
|
8640
|
+
| "events"
|
|
8641
|
+
| "events.Event"
|
|
8642
|
+
| "events.EventTarget"
|
|
8643
|
+
| "events.CustomEvent"
|
|
8644
|
+
| "events.NodeEventTarget"
|
|
8645
|
+
| "events.EventEmitter"
|
|
8646
|
+
| "events.EventEmitter.defaultMaxListeners"
|
|
8647
|
+
| "events.EventEmitter.errorMonitor"
|
|
8648
|
+
| "events.EventEmitter.captureRejections"
|
|
8649
|
+
| "events.EventEmitter.captureRejectionSymbol"
|
|
8650
|
+
| "events.EventEmitter.getEventListeners"
|
|
8651
|
+
| "events.EventEmitter.getMaxListeners"
|
|
7568
8652
|
| "events.EventEmitter.once"
|
|
8653
|
+
| "events.EventEmitter.listenerCount"
|
|
8654
|
+
| "events.EventEmitter.on"
|
|
8655
|
+
| "events.EventEmitter.setMaxListeners"
|
|
8656
|
+
| "events.EventEmitter.addAbortListener"
|
|
8657
|
+
| "events.EventEmitterAsyncResource"
|
|
8658
|
+
| "events.EventEmitterAsyncResource.defaultMaxListeners"
|
|
8659
|
+
| "events.EventEmitterAsyncResource.errorMonitor"
|
|
8660
|
+
| "events.EventEmitterAsyncResource.captureRejections"
|
|
8661
|
+
| "events.EventEmitterAsyncResource.captureRejectionSymbol"
|
|
8662
|
+
| "events.EventEmitterAsyncResource.getEventListeners"
|
|
8663
|
+
| "events.EventEmitterAsyncResource.getMaxListeners"
|
|
8664
|
+
| "events.EventEmitterAsyncResource.once"
|
|
8665
|
+
| "events.EventEmitterAsyncResource.listenerCount"
|
|
8666
|
+
| "events.EventEmitterAsyncResource.on"
|
|
8667
|
+
| "events.EventEmitterAsyncResource.setMaxListeners"
|
|
8668
|
+
| "events.EventEmitterAsyncResource.addAbortListener"
|
|
8669
|
+
| "events.defaultMaxListeners"
|
|
8670
|
+
| "events.errorMonitor"
|
|
8671
|
+
| "events.captureRejections"
|
|
8672
|
+
| "events.captureRejectionSymbol"
|
|
8673
|
+
| "events.getEventListeners"
|
|
8674
|
+
| "events.getMaxListeners"
|
|
7569
8675
|
| "events.once"
|
|
7570
|
-
| "
|
|
8676
|
+
| "events.listenerCount"
|
|
8677
|
+
| "events.on"
|
|
8678
|
+
| "events.setMaxListeners"
|
|
8679
|
+
| "events.addAbortListener"
|
|
8680
|
+
| "fs"
|
|
8681
|
+
| "fs.promises"
|
|
8682
|
+
| "fs.promises.constants"
|
|
8683
|
+
| "fs.promises.access"
|
|
8684
|
+
| "fs.promises.appendFile"
|
|
8685
|
+
| "fs.promises.chmod"
|
|
8686
|
+
| "fs.promises.chown"
|
|
8687
|
+
| "fs.promises.copyFile"
|
|
8688
|
+
| "fs.promises.cp"
|
|
8689
|
+
| "fs.promises.lchmod"
|
|
8690
|
+
| "fs.promises.lchown"
|
|
8691
|
+
| "fs.promises.lutimes"
|
|
8692
|
+
| "fs.promises.link"
|
|
8693
|
+
| "fs.promises.lstat"
|
|
8694
|
+
| "fs.promises.mkdir"
|
|
8695
|
+
| "fs.promises.mkdtemp"
|
|
8696
|
+
| "fs.promises.open"
|
|
8697
|
+
| "fs.promises.opendir"
|
|
8698
|
+
| "fs.promises.readdir"
|
|
8699
|
+
| "fs.promises.readFile"
|
|
8700
|
+
| "fs.promises.readlink"
|
|
8701
|
+
| "fs.promises.realpath"
|
|
8702
|
+
| "fs.promises.rename"
|
|
8703
|
+
| "fs.promises.rmdir"
|
|
8704
|
+
| "fs.promises.rm"
|
|
8705
|
+
| "fs.promises.stat"
|
|
8706
|
+
| "fs.promises.statfs"
|
|
8707
|
+
| "fs.promises.symlink"
|
|
8708
|
+
| "fs.promises.truncate"
|
|
8709
|
+
| "fs.promises.unlink"
|
|
8710
|
+
| "fs.promises.utimes"
|
|
8711
|
+
| "fs.promises.watch"
|
|
8712
|
+
| "fs.promises.writeFile"
|
|
8713
|
+
| "fs.promises.FileHandle"
|
|
8714
|
+
| "fs.access"
|
|
8715
|
+
| "fs.appendFile"
|
|
8716
|
+
| "fs.chmod"
|
|
8717
|
+
| "fs.chown"
|
|
8718
|
+
| "fs.close"
|
|
7571
8719
|
| "fs.copyFile"
|
|
7572
|
-
| "fs.
|
|
8720
|
+
| "fs.cp"
|
|
8721
|
+
| "fs.createReadStream"
|
|
8722
|
+
| "fs.createWriteStream"
|
|
8723
|
+
| "fs.exists"
|
|
8724
|
+
| "fs.fchmod"
|
|
8725
|
+
| "fs.fchown"
|
|
8726
|
+
| "fs.fdatasync"
|
|
8727
|
+
| "fs.fstat"
|
|
8728
|
+
| "fs.fsync"
|
|
8729
|
+
| "fs.ftruncate"
|
|
8730
|
+
| "fs.futimes"
|
|
8731
|
+
| "fs.lchmod"
|
|
8732
|
+
| "fs.lchown"
|
|
8733
|
+
| "fs.lutimes"
|
|
8734
|
+
| "fs.link"
|
|
8735
|
+
| "fs.lstat"
|
|
8736
|
+
| "fs.mkdir"
|
|
7573
8737
|
| "fs.mkdtemp"
|
|
7574
|
-
| "fs.
|
|
8738
|
+
| "fs.open"
|
|
8739
|
+
| "fs.openAsBlob"
|
|
8740
|
+
| "fs.opendir"
|
|
8741
|
+
| "fs.read"
|
|
8742
|
+
| "fs.readdir"
|
|
8743
|
+
| "fs.readFile"
|
|
8744
|
+
| "fs.readlink"
|
|
8745
|
+
| "fs.readv"
|
|
8746
|
+
| "fs.realpath"
|
|
7575
8747
|
| "fs.realpath.native"
|
|
7576
|
-
| "fs.
|
|
7577
|
-
| "fs.
|
|
8748
|
+
| "fs.native"
|
|
8749
|
+
| "fs.rename"
|
|
8750
|
+
| "fs.rmdir"
|
|
8751
|
+
| "fs.rm"
|
|
8752
|
+
| "fs.stat"
|
|
8753
|
+
| "fs.statfs"
|
|
8754
|
+
| "fs.symlink"
|
|
8755
|
+
| "fs.truncate"
|
|
8756
|
+
| "fs.unlink"
|
|
8757
|
+
| "fs.unwatchFile"
|
|
8758
|
+
| "fs.utimes"
|
|
8759
|
+
| "fs.watch"
|
|
8760
|
+
| "fs.watchFile"
|
|
8761
|
+
| "fs.write"
|
|
8762
|
+
| "fs.writeFile"
|
|
7578
8763
|
| "fs.writev"
|
|
7579
|
-
| "fs.
|
|
7580
|
-
| "fs.
|
|
7581
|
-
| "fs.
|
|
7582
|
-
| "fs.
|
|
8764
|
+
| "fs.accessSync"
|
|
8765
|
+
| "fs.appendFileSync"
|
|
8766
|
+
| "fs.chmodSync"
|
|
8767
|
+
| "fs.chownSync"
|
|
8768
|
+
| "fs.closeSync"
|
|
8769
|
+
| "fs.copyFileSync"
|
|
8770
|
+
| "fs.cpSync"
|
|
8771
|
+
| "fs.existsSync"
|
|
8772
|
+
| "fs.fchmodSync"
|
|
8773
|
+
| "fs.fchownSync"
|
|
8774
|
+
| "fs.fdatasyncSync"
|
|
8775
|
+
| "fs.fstatSync"
|
|
8776
|
+
| "fs.fsyncSync"
|
|
8777
|
+
| "fs.ftruncateSync"
|
|
8778
|
+
| "fs.futimesSync"
|
|
8779
|
+
| "fs.lchmodSync"
|
|
8780
|
+
| "fs.lchownSync"
|
|
7583
8781
|
| "fs.lutimesSync"
|
|
7584
|
-
| "fs.
|
|
8782
|
+
| "fs.linkSync"
|
|
8783
|
+
| "fs.lstatSync"
|
|
8784
|
+
| "fs.mkdirSync"
|
|
8785
|
+
| "fs.mkdtempSync"
|
|
7585
8786
|
| "fs.opendirSync"
|
|
7586
|
-
| "fs.
|
|
7587
|
-
| "fs.
|
|
7588
|
-
| "fs.
|
|
8787
|
+
| "fs.openSync"
|
|
8788
|
+
| "fs.readdirSync"
|
|
8789
|
+
| "fs.readFileSync"
|
|
8790
|
+
| "fs.readlinkSync"
|
|
7589
8791
|
| "fs.readSync"
|
|
8792
|
+
| "fs.readvSync"
|
|
8793
|
+
| "fs.realpathSync"
|
|
8794
|
+
| "fs.realpathSync.native"
|
|
8795
|
+
| "fs.renameSync"
|
|
8796
|
+
| "fs.rmdirSync"
|
|
8797
|
+
| "fs.rmSync"
|
|
8798
|
+
| "fs.statSync"
|
|
8799
|
+
| "fs.statfsSync"
|
|
8800
|
+
| "fs.symlinkSync"
|
|
8801
|
+
| "fs.truncateSync"
|
|
8802
|
+
| "fs.unlinkSync"
|
|
8803
|
+
| "fs.utimesSync"
|
|
8804
|
+
| "fs.writeFileSync"
|
|
8805
|
+
| "fs.writeSync"
|
|
8806
|
+
| "fs.writevSync"
|
|
8807
|
+
| "fs.constants"
|
|
7590
8808
|
| "fs.Dir"
|
|
8809
|
+
| "fs.Dirent"
|
|
8810
|
+
| "fs.FSWatcher"
|
|
7591
8811
|
| "fs.StatWatcher"
|
|
8812
|
+
| "fs.ReadStream"
|
|
8813
|
+
| "fs.Stats"
|
|
8814
|
+
| "fs.StatFs"
|
|
8815
|
+
| "fs.WriteStream"
|
|
8816
|
+
| "fs.common_objects"
|
|
7592
8817
|
| "fs/promises"
|
|
8818
|
+
| "fs/promises.constants"
|
|
8819
|
+
| "fs/promises.access"
|
|
8820
|
+
| "fs/promises.appendFile"
|
|
8821
|
+
| "fs/promises.chmod"
|
|
8822
|
+
| "fs/promises.chown"
|
|
8823
|
+
| "fs/promises.copyFile"
|
|
8824
|
+
| "fs/promises.cp"
|
|
8825
|
+
| "fs/promises.lchmod"
|
|
8826
|
+
| "fs/promises.lchown"
|
|
8827
|
+
| "fs/promises.lutimes"
|
|
8828
|
+
| "fs/promises.link"
|
|
8829
|
+
| "fs/promises.lstat"
|
|
8830
|
+
| "fs/promises.mkdir"
|
|
8831
|
+
| "fs/promises.mkdtemp"
|
|
8832
|
+
| "fs/promises.open"
|
|
8833
|
+
| "fs/promises.opendir"
|
|
8834
|
+
| "fs/promises.readdir"
|
|
8835
|
+
| "fs/promises.readFile"
|
|
8836
|
+
| "fs/promises.readlink"
|
|
8837
|
+
| "fs/promises.realpath"
|
|
8838
|
+
| "fs/promises.rename"
|
|
8839
|
+
| "fs/promises.rmdir"
|
|
8840
|
+
| "fs/promises.rm"
|
|
8841
|
+
| "fs/promises.stat"
|
|
8842
|
+
| "fs/promises.statfs"
|
|
8843
|
+
| "fs/promises.symlink"
|
|
8844
|
+
| "fs/promises.truncate"
|
|
8845
|
+
| "fs/promises.unlink"
|
|
8846
|
+
| "fs/promises.utimes"
|
|
8847
|
+
| "fs/promises.watch"
|
|
8848
|
+
| "fs/promises.writeFile"
|
|
8849
|
+
| "fs/promises.FileHandle"
|
|
7593
8850
|
| "http2"
|
|
8851
|
+
| "http2.constants"
|
|
8852
|
+
| "http2.sensitiveHeaders"
|
|
8853
|
+
| "http2.createServer"
|
|
8854
|
+
| "http2.createSecureServer"
|
|
8855
|
+
| "http2.connect"
|
|
8856
|
+
| "http2.getDefaultSettings"
|
|
8857
|
+
| "http2.getPackedSettings"
|
|
8858
|
+
| "http2.getUnpackedSettings"
|
|
8859
|
+
| "http2.performServerHandshake"
|
|
8860
|
+
| "http2.Http2Session"
|
|
8861
|
+
| "http2.ServerHttp2Session"
|
|
8862
|
+
| "http2.ClientHttp2Session"
|
|
8863
|
+
| "http2.Http2Stream"
|
|
8864
|
+
| "http2.ClientHttp2Stream"
|
|
8865
|
+
| "http2.ServerHttp2Stream"
|
|
8866
|
+
| "http2.Http2Server"
|
|
8867
|
+
| "http2.Http2SecureServer"
|
|
8868
|
+
| "http2.Http2ServerRequest"
|
|
8869
|
+
| "http2.Http2ServerResponse"
|
|
8870
|
+
| "http"
|
|
8871
|
+
| "http.globalAgent"
|
|
8872
|
+
| "http.createServer"
|
|
8873
|
+
| "http.get"
|
|
8874
|
+
| "http.request"
|
|
8875
|
+
| "http.Agent"
|
|
8876
|
+
| "http.Server"
|
|
7594
8877
|
| "inspector"
|
|
7595
|
-
| "
|
|
7596
|
-
| "
|
|
7597
|
-
| "
|
|
7598
|
-
| "
|
|
8878
|
+
| "inspector.Session"
|
|
8879
|
+
| "inspector.console"
|
|
8880
|
+
| "inspector.close"
|
|
8881
|
+
| "inspector.open"
|
|
8882
|
+
| "inspector.url"
|
|
8883
|
+
| "inspector.waitForDebugger"
|
|
8884
|
+
| "inspector/promises"
|
|
8885
|
+
| "inspector/promises.Session"
|
|
8886
|
+
| "inspector/promises.console"
|
|
8887
|
+
| "inspector/promises.close"
|
|
8888
|
+
| "inspector/promises.open"
|
|
8889
|
+
| "inspector/promises.url"
|
|
8890
|
+
| "inspector/promises.waitForDebugger"
|
|
8891
|
+
| "module"
|
|
7599
8892
|
| "module.builtinModules"
|
|
7600
|
-
| "module.createRequireFromPath"
|
|
7601
8893
|
| "module.createRequire"
|
|
8894
|
+
| "module.createRequireFromPath"
|
|
8895
|
+
| "module.isBuiltin"
|
|
8896
|
+
| "module.register"
|
|
7602
8897
|
| "module.syncBuiltinESMExports"
|
|
8898
|
+
| "module.findSourceMap"
|
|
8899
|
+
| "module.SourceMap"
|
|
8900
|
+
| "module.Module.builtinModules"
|
|
8901
|
+
| "module.Module.createRequire"
|
|
8902
|
+
| "module.Module.createRequireFromPath"
|
|
8903
|
+
| "module.Module.isBuiltin"
|
|
8904
|
+
| "module.Module.register"
|
|
8905
|
+
| "module.Module.syncBuiltinESMExports"
|
|
8906
|
+
| "module.Module.findSourceMap"
|
|
8907
|
+
| "module.Module.SourceMap"
|
|
8908
|
+
| "net"
|
|
8909
|
+
| "net.connect"
|
|
8910
|
+
| "net.createConnection"
|
|
8911
|
+
| "net.createServer"
|
|
8912
|
+
| "net.getDefaultAutoSelectFamily"
|
|
8913
|
+
| "net.setDefaultAutoSelectFamily"
|
|
8914
|
+
| "net.getDefaultAutoSelectFamilyAttemptTimeout"
|
|
8915
|
+
| "net.setDefaultAutoSelectFamilyAttemptTimeout"
|
|
8916
|
+
| "net.isIP"
|
|
8917
|
+
| "net.isIPv4"
|
|
8918
|
+
| "net.isIPv6"
|
|
8919
|
+
| "net.BlockList"
|
|
8920
|
+
| "net.SocketAddress"
|
|
8921
|
+
| "net.Server"
|
|
8922
|
+
| "net.Socket"
|
|
8923
|
+
| "os"
|
|
8924
|
+
| "os.EOL"
|
|
7603
8925
|
| "os.constants"
|
|
7604
8926
|
| "os.constants.priority"
|
|
8927
|
+
| "os.devNull"
|
|
8928
|
+
| "os.availableParallelism"
|
|
8929
|
+
| "os.arch"
|
|
8930
|
+
| "os.cpus"
|
|
8931
|
+
| "os.endianness"
|
|
8932
|
+
| "os.freemem"
|
|
7605
8933
|
| "os.getPriority"
|
|
7606
8934
|
| "os.homedir"
|
|
8935
|
+
| "os.hostname"
|
|
8936
|
+
| "os.loadavg"
|
|
8937
|
+
| "os.machine"
|
|
8938
|
+
| "os.networkInterfaces"
|
|
8939
|
+
| "os.platform"
|
|
8940
|
+
| "os.release"
|
|
7607
8941
|
| "os.setPriority"
|
|
8942
|
+
| "os.tmpdir"
|
|
8943
|
+
| "os.totalmem"
|
|
8944
|
+
| "os.type"
|
|
8945
|
+
| "os.uptime"
|
|
7608
8946
|
| "os.userInfo"
|
|
8947
|
+
| "os.version"
|
|
8948
|
+
| "path"
|
|
8949
|
+
| "path.posix"
|
|
8950
|
+
| "path.posix.delimiter"
|
|
8951
|
+
| "path.posix.sep"
|
|
8952
|
+
| "path.posix.basename"
|
|
8953
|
+
| "path.posix.dirname"
|
|
8954
|
+
| "path.posix.extname"
|
|
8955
|
+
| "path.posix.format"
|
|
8956
|
+
| "path.posix.isAbsolute"
|
|
8957
|
+
| "path.posix.join"
|
|
8958
|
+
| "path.posix.normalize"
|
|
8959
|
+
| "path.posix.parse"
|
|
8960
|
+
| "path.posix.relative"
|
|
8961
|
+
| "path.posix.resolve"
|
|
8962
|
+
| "path.posix.toNamespacedPath"
|
|
8963
|
+
| "path.win32"
|
|
8964
|
+
| "path.win32.delimiter"
|
|
8965
|
+
| "path.win32.sep"
|
|
8966
|
+
| "path.win32.basename"
|
|
8967
|
+
| "path.win32.dirname"
|
|
8968
|
+
| "path.win32.extname"
|
|
8969
|
+
| "path.win32.format"
|
|
8970
|
+
| "path.win32.isAbsolute"
|
|
8971
|
+
| "path.win32.join"
|
|
8972
|
+
| "path.win32.normalize"
|
|
8973
|
+
| "path.win32.parse"
|
|
8974
|
+
| "path.win32.relative"
|
|
8975
|
+
| "path.win32.resolve"
|
|
8976
|
+
| "path.win32.toNamespacedPath"
|
|
8977
|
+
| "path.delimiter"
|
|
8978
|
+
| "path.sep"
|
|
8979
|
+
| "path.basename"
|
|
8980
|
+
| "path.dirname"
|
|
8981
|
+
| "path.extname"
|
|
8982
|
+
| "path.format"
|
|
8983
|
+
| "path.isAbsolute"
|
|
8984
|
+
| "path.join"
|
|
8985
|
+
| "path.normalize"
|
|
8986
|
+
| "path.parse"
|
|
8987
|
+
| "path.relative"
|
|
8988
|
+
| "path.resolve"
|
|
7609
8989
|
| "path.toNamespacedPath"
|
|
8990
|
+
| "path/posix"
|
|
8991
|
+
| "path/posix.delimiter"
|
|
8992
|
+
| "path/posix.sep"
|
|
8993
|
+
| "path/posix.basename"
|
|
8994
|
+
| "path/posix.dirname"
|
|
8995
|
+
| "path/posix.extname"
|
|
8996
|
+
| "path/posix.format"
|
|
8997
|
+
| "path/posix.isAbsolute"
|
|
8998
|
+
| "path/posix.join"
|
|
8999
|
+
| "path/posix.normalize"
|
|
9000
|
+
| "path/posix.parse"
|
|
9001
|
+
| "path/posix.relative"
|
|
9002
|
+
| "path/posix.resolve"
|
|
9003
|
+
| "path/posix.toNamespacedPath"
|
|
9004
|
+
| "path/win32"
|
|
9005
|
+
| "path/win32.delimiter"
|
|
9006
|
+
| "path/win32.sep"
|
|
9007
|
+
| "path/win32.basename"
|
|
9008
|
+
| "path/win32.dirname"
|
|
9009
|
+
| "path/win32.extname"
|
|
9010
|
+
| "path/win32.format"
|
|
9011
|
+
| "path/win32.isAbsolute"
|
|
9012
|
+
| "path/win32.join"
|
|
9013
|
+
| "path/win32.normalize"
|
|
9014
|
+
| "path/win32.parse"
|
|
9015
|
+
| "path/win32.relative"
|
|
9016
|
+
| "path/win32.resolve"
|
|
9017
|
+
| "path/win32.toNamespacedPath"
|
|
7610
9018
|
| "perf_hooks"
|
|
9019
|
+
| "perf_hooks.performance"
|
|
9020
|
+
| "perf_hooks.createHistogram"
|
|
7611
9021
|
| "perf_hooks.monitorEventLoopDelay"
|
|
7612
|
-
| "
|
|
9022
|
+
| "perf_hooks.PerformanceEntry"
|
|
9023
|
+
| "perf_hooks.PerformanceMark"
|
|
9024
|
+
| "perf_hooks.PerformanceMeasure"
|
|
9025
|
+
| "perf_hooks.PerformanceNodeEntry"
|
|
9026
|
+
| "perf_hooks.PerformanceNodeTiming"
|
|
9027
|
+
| "perf_hooks.PerformanceResourceTiming"
|
|
9028
|
+
| "perf_hooks.PerformanceObserver"
|
|
9029
|
+
| "perf_hooks.PerformanceObserverEntryList"
|
|
9030
|
+
| "perf_hooks.Histogram"
|
|
9031
|
+
| "perf_hooks.IntervalHistogram"
|
|
9032
|
+
| "perf_hooks.RecordableHistogram"
|
|
9033
|
+
| "punycode"
|
|
9034
|
+
| "punycode.ucs2"
|
|
9035
|
+
| "punycode.version"
|
|
9036
|
+
| "punycode.decode"
|
|
9037
|
+
| "punycode.encode"
|
|
9038
|
+
| "punycode.toASCII"
|
|
9039
|
+
| "punycode.toUnicode"
|
|
9040
|
+
| "querystring"
|
|
9041
|
+
| "querystring.decode"
|
|
9042
|
+
| "querystring.encode"
|
|
9043
|
+
| "querystring.escape"
|
|
9044
|
+
| "querystring.parse"
|
|
9045
|
+
| "querystring.stringify"
|
|
9046
|
+
| "querystring.unescape"
|
|
9047
|
+
| "readline"
|
|
9048
|
+
| "readline.promises"
|
|
9049
|
+
| "readline.promises.createInterface"
|
|
9050
|
+
| "readline.promises.Interface"
|
|
9051
|
+
| "readline.promises.Readline"
|
|
9052
|
+
| "readline.clearLine"
|
|
9053
|
+
| "readline.clearScreenDown"
|
|
9054
|
+
| "readline.createInterface"
|
|
9055
|
+
| "readline.cursorTo"
|
|
9056
|
+
| "readline.moveCursor"
|
|
9057
|
+
| "readline.Interface"
|
|
9058
|
+
| "readline.emitKeypressEvents"
|
|
9059
|
+
| "readline.InterfaceConstructor"
|
|
9060
|
+
| "readline/promises"
|
|
9061
|
+
| "readline/promises.createInterface"
|
|
9062
|
+
| "readline/promises.Interface"
|
|
9063
|
+
| "readline/promises.Readline"
|
|
9064
|
+
| "sea"
|
|
9065
|
+
| "sea.isSea"
|
|
9066
|
+
| "sea.getAsset"
|
|
9067
|
+
| "sea.getAssetAsBlob"
|
|
9068
|
+
| "sea.getRawAsset"
|
|
9069
|
+
| "sea.test.isSea"
|
|
9070
|
+
| "sea.test.getAsset"
|
|
9071
|
+
| "sea.test.getAssetAsBlob"
|
|
9072
|
+
| "sea.test.getRawAsset"
|
|
9073
|
+
| "stream"
|
|
9074
|
+
| "stream.promises"
|
|
9075
|
+
| "stream.promises.pipeline"
|
|
9076
|
+
| "stream.promises.finished"
|
|
7613
9077
|
| "stream.finished"
|
|
7614
9078
|
| "stream.pipeline"
|
|
9079
|
+
| "stream.compose"
|
|
9080
|
+
| "stream.Readable"
|
|
9081
|
+
| "stream.Readable.from"
|
|
9082
|
+
| "stream.Readable.isDisturbed"
|
|
9083
|
+
| "stream.Readable.fromWeb"
|
|
9084
|
+
| "stream.Readable.toWeb"
|
|
9085
|
+
| "stream.Writable"
|
|
9086
|
+
| "stream.Writable.fromWeb"
|
|
9087
|
+
| "stream.Writable.toWeb"
|
|
9088
|
+
| "stream.Duplex"
|
|
9089
|
+
| "stream.Duplex.from"
|
|
9090
|
+
| "stream.Duplex.fromWeb"
|
|
9091
|
+
| "stream.Duplex.toWeb"
|
|
9092
|
+
| "stream.Transform"
|
|
9093
|
+
| "stream.isErrored"
|
|
9094
|
+
| "stream.isReadable"
|
|
9095
|
+
| "stream.addAbortSignal"
|
|
9096
|
+
| "stream.getDefaultHighWaterMark"
|
|
9097
|
+
| "stream.setDefaultHighWaterMark"
|
|
9098
|
+
| "stream/promises.pipeline"
|
|
9099
|
+
| "stream/promises.finished"
|
|
9100
|
+
| "stream/web"
|
|
9101
|
+
| "stream/web.ReadableStream"
|
|
9102
|
+
| "stream/web.ReadableStream.from"
|
|
9103
|
+
| "stream/web.ReadableStreamDefaultReader"
|
|
9104
|
+
| "stream/web.ReadableStreamBYOBReader"
|
|
9105
|
+
| "stream/web.ReadableStreamDefaultController"
|
|
9106
|
+
| "stream/web.ReadableByteStreamController"
|
|
9107
|
+
| "stream/web.ReadableStreamBYOBRequest"
|
|
9108
|
+
| "stream/web.WritableStream"
|
|
9109
|
+
| "stream/web.WritableStreamDefaultWriter"
|
|
9110
|
+
| "stream/web.WritableStreamDefaultController"
|
|
9111
|
+
| "stream/web.TransformStream"
|
|
9112
|
+
| "stream/web.TransformStreamDefaultController"
|
|
9113
|
+
| "stream/web.ByteLengthQueuingStrategy"
|
|
9114
|
+
| "stream/web.CountQueuingStrategy"
|
|
9115
|
+
| "stream/web.TextEncoderStream"
|
|
9116
|
+
| "stream/web.TextDecoderStream"
|
|
9117
|
+
| "stream/web.CompressionStream"
|
|
9118
|
+
| "stream/web.DecompressionStream"
|
|
9119
|
+
| "stream/consumers"
|
|
9120
|
+
| "stream/consumers.arrayBuffer"
|
|
9121
|
+
| "stream/consumers.blob"
|
|
9122
|
+
| "stream/consumers.buffer"
|
|
9123
|
+
| "stream/consumers.json"
|
|
9124
|
+
| "stream/consumers.text"
|
|
9125
|
+
| "string_decoder"
|
|
9126
|
+
| "string_decoder.StringDecoder"
|
|
9127
|
+
| "test"
|
|
9128
|
+
| "test.run"
|
|
9129
|
+
| "test.skip"
|
|
9130
|
+
| "test.todo"
|
|
9131
|
+
| "test.only"
|
|
9132
|
+
| "test.describe"
|
|
9133
|
+
| "test.describe.skip"
|
|
9134
|
+
| "test.describe.todo"
|
|
9135
|
+
| "test.describe.only"
|
|
9136
|
+
| "test.it"
|
|
9137
|
+
| "test.it.skip"
|
|
9138
|
+
| "test.it.todo"
|
|
9139
|
+
| "test.it.only"
|
|
9140
|
+
| "test.before"
|
|
9141
|
+
| "test.after"
|
|
9142
|
+
| "test.beforeEach"
|
|
9143
|
+
| "test.afterEach"
|
|
9144
|
+
| "test.MockFunctionContext"
|
|
9145
|
+
| "test.MockTracker"
|
|
9146
|
+
| "test.MockTimers"
|
|
9147
|
+
| "test.TestsStream"
|
|
9148
|
+
| "test.TestContext"
|
|
9149
|
+
| "test.SuiteContext"
|
|
9150
|
+
| "test.test.run"
|
|
9151
|
+
| "test.test.skip"
|
|
9152
|
+
| "test.test.todo"
|
|
9153
|
+
| "test.test.only"
|
|
9154
|
+
| "test.test.describe"
|
|
9155
|
+
| "test.test.it"
|
|
9156
|
+
| "test.test.before"
|
|
9157
|
+
| "test.test.after"
|
|
9158
|
+
| "test.test.beforeEach"
|
|
9159
|
+
| "test.test.afterEach"
|
|
9160
|
+
| "test.test.MockFunctionContext"
|
|
9161
|
+
| "test.test.MockTracker"
|
|
9162
|
+
| "test.test.MockTimers"
|
|
9163
|
+
| "test.test.TestsStream"
|
|
9164
|
+
| "test.test.TestContext"
|
|
9165
|
+
| "test.test.SuiteContext"
|
|
9166
|
+
| "timers"
|
|
9167
|
+
| "timers.Immediate"
|
|
9168
|
+
| "timers.Timeout"
|
|
9169
|
+
| "timers.setImmediate"
|
|
9170
|
+
| "timers.clearImmediate"
|
|
9171
|
+
| "timers.setInterval"
|
|
9172
|
+
| "timers.clearInterval"
|
|
9173
|
+
| "timers.setTimeout"
|
|
9174
|
+
| "timers.clearTimeout"
|
|
9175
|
+
| "timers.promises"
|
|
9176
|
+
| "timers.promises.setTimeout"
|
|
9177
|
+
| "timers.promises.setImmediate"
|
|
9178
|
+
| "timers.promises.setInterval"
|
|
9179
|
+
| "timers.promises.scheduler.wait"
|
|
9180
|
+
| "timers.promises.scheduler.yield"
|
|
9181
|
+
| "timers/promises"
|
|
9182
|
+
| "timers/promises.setTimeout"
|
|
9183
|
+
| "timers/promises.setImmediate"
|
|
9184
|
+
| "timers/promises.setInterval"
|
|
9185
|
+
| "tls"
|
|
9186
|
+
| "tls.rootCertificates"
|
|
9187
|
+
| "tls.DEFAULT_ECDH_CURVE"
|
|
9188
|
+
| "tls.DEFAULT_MAX_VERSION"
|
|
9189
|
+
| "tls.DEFAULT_MIN_VERSION"
|
|
9190
|
+
| "tls.DEFAULT_CIPHERS"
|
|
9191
|
+
| "tls.checkServerIdentity"
|
|
9192
|
+
| "tls.connect"
|
|
9193
|
+
| "tls.createSecureContext"
|
|
9194
|
+
| "tls.createSecurePair"
|
|
9195
|
+
| "tls.createServer"
|
|
9196
|
+
| "tls.getCiphers"
|
|
9197
|
+
| "tls.SecureContext"
|
|
9198
|
+
| "tls.CryptoStream"
|
|
9199
|
+
| "tls.SecurePair"
|
|
9200
|
+
| "tls.Server"
|
|
9201
|
+
| "tls.TLSSocket"
|
|
7615
9202
|
| "trace_events"
|
|
7616
|
-
| "
|
|
7617
|
-
| "
|
|
9203
|
+
| "trace_events.createTracing"
|
|
9204
|
+
| "trace_events.getEnabledCategories"
|
|
9205
|
+
| "tty"
|
|
9206
|
+
| "tty.isatty"
|
|
9207
|
+
| "tty.ReadStream"
|
|
9208
|
+
| "tty.WriteStream"
|
|
9209
|
+
| "url"
|
|
7618
9210
|
| "url.domainToASCII"
|
|
7619
9211
|
| "url.domainToUnicode"
|
|
9212
|
+
| "url.fileURLToPath"
|
|
9213
|
+
| "url.format"
|
|
9214
|
+
| "url.pathToFileURL"
|
|
9215
|
+
| "url.urlToHttpOptions"
|
|
9216
|
+
| "url.URL"
|
|
9217
|
+
| "url.URL.canParse"
|
|
9218
|
+
| "url.URL.createObjectURL"
|
|
9219
|
+
| "url.URL.revokeObjectURL"
|
|
9220
|
+
| "url.URLSearchParams"
|
|
9221
|
+
| "url.Url"
|
|
9222
|
+
| "util.promisify"
|
|
9223
|
+
| "util.promisify.custom"
|
|
7620
9224
|
| "util.callbackify"
|
|
9225
|
+
| "util.debuglog"
|
|
9226
|
+
| "util.debug"
|
|
9227
|
+
| "util.deprecate"
|
|
9228
|
+
| "util.format"
|
|
7621
9229
|
| "util.formatWithOptions"
|
|
7622
9230
|
| "util.getSystemErrorName"
|
|
9231
|
+
| "util.getSystemErrorMap"
|
|
9232
|
+
| "util.inherits"
|
|
9233
|
+
| "util.inspect"
|
|
7623
9234
|
| "util.inspect.custom"
|
|
7624
9235
|
| "util.inspect.defaultOptions"
|
|
7625
9236
|
| "util.inspect.replDefaults"
|
|
7626
9237
|
| "util.isDeepStrictEqual"
|
|
7627
|
-
| "util.
|
|
9238
|
+
| "util.parseArgs"
|
|
9239
|
+
| "util.parseEnv"
|
|
9240
|
+
| "util.stripVTControlCharacters"
|
|
9241
|
+
| "util.styleText"
|
|
9242
|
+
| "util.toUSVString"
|
|
9243
|
+
| "util.transferableAbortController"
|
|
9244
|
+
| "util.transferableAbortSignal"
|
|
9245
|
+
| "util.aborted"
|
|
9246
|
+
| "util.MIMEType"
|
|
9247
|
+
| "util.MIMEParams"
|
|
7628
9248
|
| "util.TextDecoder"
|
|
7629
9249
|
| "util.TextEncoder"
|
|
7630
9250
|
| "util.types"
|
|
9251
|
+
| "util.types.isExternal"
|
|
9252
|
+
| "util.types.isDate"
|
|
9253
|
+
| "util.types.isArgumentsObject"
|
|
9254
|
+
| "util.types.isBigIntObject"
|
|
9255
|
+
| "util.types.isBooleanObject"
|
|
9256
|
+
| "util.types.isNumberObject"
|
|
9257
|
+
| "util.types.isStringObject"
|
|
9258
|
+
| "util.types.isSymbolObject"
|
|
9259
|
+
| "util.types.isNativeError"
|
|
9260
|
+
| "util.types.isRegExp"
|
|
9261
|
+
| "util.types.isAsyncFunction"
|
|
9262
|
+
| "util.types.isGeneratorFunction"
|
|
9263
|
+
| "util.types.isGeneratorObject"
|
|
9264
|
+
| "util.types.isPromise"
|
|
9265
|
+
| "util.types.isMap"
|
|
9266
|
+
| "util.types.isSet"
|
|
9267
|
+
| "util.types.isMapIterator"
|
|
9268
|
+
| "util.types.isSetIterator"
|
|
9269
|
+
| "util.types.isWeakMap"
|
|
9270
|
+
| "util.types.isWeakSet"
|
|
9271
|
+
| "util.types.isArrayBuffer"
|
|
9272
|
+
| "util.types.isDataView"
|
|
9273
|
+
| "util.types.isSharedArrayBuffer"
|
|
9274
|
+
| "util.types.isProxy"
|
|
9275
|
+
| "util.types.isModuleNamespaceObject"
|
|
9276
|
+
| "util.types.isAnyArrayBuffer"
|
|
7631
9277
|
| "util.types.isBoxedPrimitive"
|
|
9278
|
+
| "util.types.isArrayBufferView"
|
|
9279
|
+
| "util.types.isTypedArray"
|
|
9280
|
+
| "util.types.isUint8Array"
|
|
9281
|
+
| "util.types.isUint8ClampedArray"
|
|
9282
|
+
| "util.types.isUint16Array"
|
|
9283
|
+
| "util.types.isUint32Array"
|
|
9284
|
+
| "util.types.isInt8Array"
|
|
9285
|
+
| "util.types.isInt16Array"
|
|
9286
|
+
| "util.types.isInt32Array"
|
|
9287
|
+
| "util.types.isFloat32Array"
|
|
9288
|
+
| "util.types.isFloat64Array"
|
|
9289
|
+
| "util.types.isBigInt64Array"
|
|
9290
|
+
| "util.types.isBigUint64Array"
|
|
9291
|
+
| "util.types.isKeyObject"
|
|
9292
|
+
| "util.types.isCryptoKey"
|
|
9293
|
+
| "util.types.isWebAssemblyCompiledModule"
|
|
9294
|
+
| "util._extend"
|
|
9295
|
+
| "util.isArray"
|
|
9296
|
+
| "util.isBoolean"
|
|
9297
|
+
| "util.isBuffer"
|
|
9298
|
+
| "util.isDate"
|
|
9299
|
+
| "util.isError"
|
|
9300
|
+
| "util.isFunction"
|
|
9301
|
+
| "util.isNull"
|
|
9302
|
+
| "util.isNullOrUndefined"
|
|
9303
|
+
| "util.isNumber"
|
|
9304
|
+
| "util.isObject"
|
|
9305
|
+
| "util.isPrimitive"
|
|
9306
|
+
| "util.isRegExp"
|
|
9307
|
+
| "util.isString"
|
|
9308
|
+
| "util.isSymbol"
|
|
9309
|
+
| "util.isUndefined"
|
|
9310
|
+
| "util.log"
|
|
9311
|
+
| "util"
|
|
9312
|
+
| "util/types"
|
|
9313
|
+
| "util/types.isExternal"
|
|
9314
|
+
| "util/types.isDate"
|
|
9315
|
+
| "util/types.isArgumentsObject"
|
|
9316
|
+
| "util/types.isBigIntObject"
|
|
9317
|
+
| "util/types.isBooleanObject"
|
|
9318
|
+
| "util/types.isNumberObject"
|
|
9319
|
+
| "util/types.isStringObject"
|
|
9320
|
+
| "util/types.isSymbolObject"
|
|
9321
|
+
| "util/types.isNativeError"
|
|
9322
|
+
| "util/types.isRegExp"
|
|
9323
|
+
| "util/types.isAsyncFunction"
|
|
9324
|
+
| "util/types.isGeneratorFunction"
|
|
9325
|
+
| "util/types.isGeneratorObject"
|
|
9326
|
+
| "util/types.isPromise"
|
|
9327
|
+
| "util/types.isMap"
|
|
9328
|
+
| "util/types.isSet"
|
|
9329
|
+
| "util/types.isMapIterator"
|
|
9330
|
+
| "util/types.isSetIterator"
|
|
9331
|
+
| "util/types.isWeakMap"
|
|
9332
|
+
| "util/types.isWeakSet"
|
|
9333
|
+
| "util/types.isArrayBuffer"
|
|
9334
|
+
| "util/types.isDataView"
|
|
9335
|
+
| "util/types.isSharedArrayBuffer"
|
|
9336
|
+
| "util/types.isProxy"
|
|
9337
|
+
| "util/types.isModuleNamespaceObject"
|
|
9338
|
+
| "util/types.isAnyArrayBuffer"
|
|
9339
|
+
| "util/types.isBoxedPrimitive"
|
|
9340
|
+
| "util/types.isArrayBufferView"
|
|
9341
|
+
| "util/types.isTypedArray"
|
|
9342
|
+
| "util/types.isUint8Array"
|
|
9343
|
+
| "util/types.isUint8ClampedArray"
|
|
9344
|
+
| "util/types.isUint16Array"
|
|
9345
|
+
| "util/types.isUint32Array"
|
|
9346
|
+
| "util/types.isInt8Array"
|
|
9347
|
+
| "util/types.isInt16Array"
|
|
9348
|
+
| "util/types.isInt32Array"
|
|
9349
|
+
| "util/types.isFloat32Array"
|
|
9350
|
+
| "util/types.isFloat64Array"
|
|
9351
|
+
| "util/types.isBigInt64Array"
|
|
9352
|
+
| "util/types.isBigUint64Array"
|
|
9353
|
+
| "util/types.isKeyObject"
|
|
9354
|
+
| "util/types.isCryptoKey"
|
|
9355
|
+
| "util/types.isWebAssemblyCompiledModule"
|
|
7632
9356
|
| "v8"
|
|
7633
|
-
| "v8.
|
|
7634
|
-
| "v8.
|
|
7635
|
-
| "v8.Deserializer"
|
|
9357
|
+
| "v8.serialize"
|
|
9358
|
+
| "v8.deserialize"
|
|
7636
9359
|
| "v8.Serializer"
|
|
9360
|
+
| "v8.Deserializer"
|
|
9361
|
+
| "v8.DefaultSerializer"
|
|
9362
|
+
| "v8.DefaultDeserializer"
|
|
9363
|
+
| "v8.promiseHooks"
|
|
9364
|
+
| "v8.promiseHooks.onInit"
|
|
9365
|
+
| "v8.promiseHooks.onSettled"
|
|
9366
|
+
| "v8.promiseHooks.onBefore"
|
|
9367
|
+
| "v8.promiseHooks.onAfter"
|
|
9368
|
+
| "v8.promiseHooks.createHook"
|
|
9369
|
+
| "v8.startupSnapshot"
|
|
9370
|
+
| "v8.startupSnapshot.addSerializeCallback"
|
|
9371
|
+
| "v8.startupSnapshot.addDeserializeCallback"
|
|
9372
|
+
| "v8.startupSnapshot.setDeserializeMainFunction"
|
|
9373
|
+
| "v8.startupSnapshot.isBuildingSnapshot"
|
|
7637
9374
|
| "v8.cachedDataVersionTag"
|
|
7638
|
-
| "v8.deserialize"
|
|
7639
9375
|
| "v8.getHeapCodeStatistics"
|
|
7640
9376
|
| "v8.getHeapSnapshot"
|
|
7641
9377
|
| "v8.getHeapSpaceStatistics"
|
|
7642
|
-
| "v8.
|
|
9378
|
+
| "v8.getHeapStatistics"
|
|
9379
|
+
| "v8.setFlagsFromString"
|
|
9380
|
+
| "v8.stopCoverage"
|
|
9381
|
+
| "v8.takeCoverage"
|
|
7643
9382
|
| "v8.writeHeapSnapshot"
|
|
7644
|
-
| "
|
|
9383
|
+
| "v8.setHeapSnapshotNearHeapLimit"
|
|
9384
|
+
| "v8.GCProfiler"
|
|
9385
|
+
| "vm.constants"
|
|
7645
9386
|
| "vm.compileFunction"
|
|
9387
|
+
| "vm.createContext"
|
|
9388
|
+
| "vm.isContext"
|
|
9389
|
+
| "vm.measureMemory"
|
|
9390
|
+
| "vm.runInContext"
|
|
9391
|
+
| "vm.runInNewContext"
|
|
9392
|
+
| "vm.runInThisContext"
|
|
9393
|
+
| "vm.Script"
|
|
9394
|
+
| "vm.Module"
|
|
9395
|
+
| "vm.SourceTextModule"
|
|
9396
|
+
| "vm.SyntheticModule"
|
|
9397
|
+
| "vm"
|
|
9398
|
+
| "wasi.WASI"
|
|
9399
|
+
| "wasi"
|
|
7646
9400
|
| "worker_threads"
|
|
9401
|
+
| "worker_threads.isMainThread"
|
|
9402
|
+
| "worker_threads.parentPort"
|
|
9403
|
+
| "worker_threads.resourceLimits"
|
|
9404
|
+
| "worker_threads.SHARE_ENV"
|
|
9405
|
+
| "worker_threads.threadId"
|
|
9406
|
+
| "worker_threads.workerData"
|
|
9407
|
+
| "worker_threads.getEnvironmentData"
|
|
9408
|
+
| "worker_threads.markAsUntransferable"
|
|
9409
|
+
| "worker_threads.isMarkedAsUntransferable"
|
|
9410
|
+
| "worker_threads.moveMessagePortToContext"
|
|
9411
|
+
| "worker_threads.receiveMessageOnPort"
|
|
9412
|
+
| "worker_threads.setEnvironmentData"
|
|
9413
|
+
| "worker_threads.BroadcastChannel"
|
|
9414
|
+
| "worker_threads.MessageChannel"
|
|
9415
|
+
| "worker_threads.MessagePort"
|
|
9416
|
+
| "worker_threads.Worker"
|
|
9417
|
+
| "zlib.constants"
|
|
9418
|
+
| "zlib.createBrotliCompress"
|
|
9419
|
+
| "zlib.createBrotliDecompress"
|
|
9420
|
+
| "zlib.createDeflate"
|
|
9421
|
+
| "zlib.createDeflateRaw"
|
|
9422
|
+
| "zlib.createGunzip"
|
|
9423
|
+
| "zlib.createGzip"
|
|
9424
|
+
| "zlib.createInflate"
|
|
9425
|
+
| "zlib.createInflateRaw"
|
|
9426
|
+
| "zlib.createUnzip"
|
|
9427
|
+
| "zlib.brotliCompress"
|
|
9428
|
+
| "zlib.brotliCompressSync"
|
|
9429
|
+
| "zlib.brotliDecompress"
|
|
9430
|
+
| "zlib.brotliDecompressSync"
|
|
9431
|
+
| "zlib.deflate"
|
|
9432
|
+
| "zlib.deflateSync"
|
|
9433
|
+
| "zlib.deflateRaw"
|
|
9434
|
+
| "zlib.deflateRawSync"
|
|
9435
|
+
| "zlib.gunzip"
|
|
9436
|
+
| "zlib.gunzipSync"
|
|
9437
|
+
| "zlib.gzip"
|
|
9438
|
+
| "zlib.gzipSync"
|
|
9439
|
+
| "zlib.inflate"
|
|
9440
|
+
| "zlib.inflateSync"
|
|
9441
|
+
| "zlib.inflateRaw"
|
|
9442
|
+
| "zlib.inflateRawSync"
|
|
9443
|
+
| "zlib.unzip"
|
|
9444
|
+
| "zlib.unzipSync"
|
|
9445
|
+
| "zlib.BrotliCompress"
|
|
9446
|
+
| "zlib.BrotliDecompress"
|
|
9447
|
+
| "zlib.Deflate"
|
|
9448
|
+
| "zlib.DeflateRaw"
|
|
9449
|
+
| "zlib.Gunzip"
|
|
9450
|
+
| "zlib.Gzip"
|
|
9451
|
+
| "zlib.Inflate"
|
|
9452
|
+
| "zlib.InflateRaw"
|
|
9453
|
+
| "zlib.Unzip"
|
|
9454
|
+
| "zlib"
|
|
7647
9455
|
)[];
|
|
7648
9456
|
},
|
|
7649
9457
|
];
|
|
@@ -7661,6 +9469,14 @@ type NPreferGlobalTextEncoder = [] | ["always" | "never"];
|
|
|
7661
9469
|
type NPreferGlobalUrl = [] | ["always" | "never"];
|
|
7662
9470
|
// ----- n/prefer-global/url-search-params -----
|
|
7663
9471
|
type NPreferGlobalUrlSearchParams = [] | ["always" | "never"];
|
|
9472
|
+
// ----- n/prefer-node-protocol -----
|
|
9473
|
+
type NPreferNodeProtocol =
|
|
9474
|
+
| []
|
|
9475
|
+
| [
|
|
9476
|
+
{
|
|
9477
|
+
version?: string;
|
|
9478
|
+
},
|
|
9479
|
+
];
|
|
7664
9480
|
// ----- n/shebang -----
|
|
7665
9481
|
type NShebang =
|
|
7666
9482
|
| []
|
|
@@ -7684,6 +9500,8 @@ type NShebang =
|
|
|
7684
9500
|
replace: [string, string];
|
|
7685
9501
|
}[],
|
|
7686
9502
|
];
|
|
9503
|
+
ignoreUnpublished?: boolean;
|
|
9504
|
+
additionalExecutables?: string[];
|
|
7687
9505
|
},
|
|
7688
9506
|
];
|
|
7689
9507
|
|
|
@@ -11503,265 +13321,265 @@ type StylisticYieldStarSpacing =
|
|
|
11503
13321
|
|
|
11504
13322
|
interface VitestRuleOptions {
|
|
11505
13323
|
/**
|
|
11506
|
-
*
|
|
13324
|
+
* require .spec test file pattern
|
|
11507
13325
|
* @see https://github.com/veritem/eslint-plugin-vitest/blob/main/docs/rules/consistent-test-filename.md
|
|
11508
13326
|
*/
|
|
11509
13327
|
"vitest/consistent-test-filename"?: Linter.RuleEntry<VitestConsistentTestFilename>;
|
|
11510
13328
|
/**
|
|
11511
|
-
*
|
|
13329
|
+
* enforce using test or it but not both
|
|
11512
13330
|
* @see https://github.com/veritem/eslint-plugin-vitest/blob/main/docs/rules/consistent-test-it.md
|
|
11513
13331
|
*/
|
|
11514
13332
|
"vitest/consistent-test-it"?: Linter.RuleEntry<VitestConsistentTestIt>;
|
|
11515
13333
|
/**
|
|
11516
|
-
*
|
|
13334
|
+
* enforce having expectation in test body
|
|
11517
13335
|
* @see https://github.com/veritem/eslint-plugin-vitest/blob/main/docs/rules/expect-expect.md
|
|
11518
13336
|
*/
|
|
11519
13337
|
"vitest/expect-expect"?: Linter.RuleEntry<VitestExpectExpect>;
|
|
11520
13338
|
/**
|
|
11521
|
-
*
|
|
13339
|
+
* enforce a maximum number of expect per test
|
|
11522
13340
|
* @see https://github.com/veritem/eslint-plugin-vitest/blob/main/docs/rules/max-expects.md
|
|
11523
13341
|
*/
|
|
11524
13342
|
"vitest/max-expects"?: Linter.RuleEntry<VitestMaxExpects>;
|
|
11525
13343
|
/**
|
|
11526
|
-
*
|
|
13344
|
+
* require describe block to be less than set max value or default value
|
|
11527
13345
|
* @see https://github.com/veritem/eslint-plugin-vitest/blob/main/docs/rules/max-nested-describe.md
|
|
11528
13346
|
*/
|
|
11529
13347
|
"vitest/max-nested-describe"?: Linter.RuleEntry<VitestMaxNestedDescribe>;
|
|
11530
13348
|
/**
|
|
11531
|
-
*
|
|
13349
|
+
* disallow alias methods
|
|
11532
13350
|
* @see https://github.com/veritem/eslint-plugin-vitest/blob/main/docs/rules/no-alias-methods.md
|
|
11533
13351
|
*/
|
|
11534
13352
|
"vitest/no-alias-methods"?: Linter.RuleEntry<[]>;
|
|
11535
13353
|
/**
|
|
11536
|
-
*
|
|
13354
|
+
* disallow commented out tests
|
|
11537
13355
|
* @see https://github.com/veritem/eslint-plugin-vitest/blob/main/docs/rules/no-commented-out-tests.md
|
|
11538
13356
|
*/
|
|
11539
13357
|
"vitest/no-commented-out-tests"?: Linter.RuleEntry<[]>;
|
|
11540
13358
|
/**
|
|
11541
|
-
*
|
|
13359
|
+
* disallow conditional expects
|
|
11542
13360
|
* @see https://github.com/veritem/eslint-plugin-vitest/blob/main/docs/rules/no-conditional-expect.md
|
|
11543
13361
|
*/
|
|
11544
13362
|
"vitest/no-conditional-expect"?: Linter.RuleEntry<[]>;
|
|
11545
13363
|
/**
|
|
11546
|
-
*
|
|
13364
|
+
* disallow conditional tests
|
|
11547
13365
|
* @see https://github.com/veritem/eslint-plugin-vitest/blob/main/docs/rules/no-conditional-in-test.md
|
|
11548
13366
|
*/
|
|
11549
13367
|
"vitest/no-conditional-in-test"?: Linter.RuleEntry<[]>;
|
|
11550
13368
|
/**
|
|
11551
|
-
*
|
|
13369
|
+
* disallow conditional tests
|
|
11552
13370
|
* @see https://github.com/veritem/eslint-plugin-vitest/blob/main/docs/rules/no-conditional-tests.md
|
|
11553
13371
|
*/
|
|
11554
13372
|
"vitest/no-conditional-tests"?: Linter.RuleEntry<[]>;
|
|
11555
13373
|
/**
|
|
11556
|
-
*
|
|
13374
|
+
* disallow disabled tests
|
|
11557
13375
|
* @see https://github.com/veritem/eslint-plugin-vitest/blob/main/docs/rules/no-disabled-tests.md
|
|
11558
13376
|
*/
|
|
11559
13377
|
"vitest/no-disabled-tests"?: Linter.RuleEntry<[]>;
|
|
11560
13378
|
/**
|
|
11561
|
-
*
|
|
13379
|
+
* disallow using a callback in asynchronous tests and hooks
|
|
11562
13380
|
* @see https://github.com/veritem/eslint-plugin-vitest/blob/main/docs/rules/no-done-callback.md
|
|
11563
13381
|
* @deprecated
|
|
11564
13382
|
*/
|
|
11565
13383
|
"vitest/no-done-callback"?: Linter.RuleEntry<[]>;
|
|
11566
13384
|
/**
|
|
11567
|
-
*
|
|
13385
|
+
* disallow duplicate hooks and teardown hooks
|
|
11568
13386
|
* @see https://github.com/veritem/eslint-plugin-vitest/blob/main/docs/rules/no-duplicate-hooks.md
|
|
11569
13387
|
*/
|
|
11570
13388
|
"vitest/no-duplicate-hooks"?: Linter.RuleEntry<[]>;
|
|
11571
13389
|
/**
|
|
11572
|
-
*
|
|
13390
|
+
* disallow focused tests
|
|
11573
13391
|
* @see https://github.com/veritem/eslint-plugin-vitest/blob/main/docs/rules/no-focused-tests.md
|
|
11574
13392
|
*/
|
|
11575
13393
|
"vitest/no-focused-tests"?: Linter.RuleEntry<[]>;
|
|
11576
13394
|
/**
|
|
11577
|
-
*
|
|
13395
|
+
* disallow setup and teardown hooks
|
|
11578
13396
|
* @see https://github.com/veritem/eslint-plugin-vitest/blob/main/docs/rules/no-hooks.md
|
|
11579
13397
|
*/
|
|
11580
13398
|
"vitest/no-hooks"?: Linter.RuleEntry<VitestNoHooks>;
|
|
11581
13399
|
/**
|
|
11582
|
-
*
|
|
13400
|
+
* disallow identical titles
|
|
11583
13401
|
* @see https://github.com/veritem/eslint-plugin-vitest/blob/main/docs/rules/no-identical-title.md
|
|
11584
13402
|
*/
|
|
11585
13403
|
"vitest/no-identical-title"?: Linter.RuleEntry<[]>;
|
|
11586
13404
|
/**
|
|
11587
|
-
*
|
|
13405
|
+
* disallow importing `node:test`
|
|
11588
13406
|
* @see https://github.com/veritem/eslint-plugin-vitest/blob/main/docs/rules/no-import-node-test.md
|
|
11589
13407
|
*/
|
|
11590
13408
|
"vitest/no-import-node-test"?: Linter.RuleEntry<[]>;
|
|
11591
13409
|
/**
|
|
11592
|
-
*
|
|
13410
|
+
* disallow string interpolation in snapshots
|
|
11593
13411
|
* @see https://github.com/veritem/eslint-plugin-vitest/blob/main/docs/rules/no-interpolation-in-snapshots.md
|
|
11594
13412
|
*/
|
|
11595
13413
|
"vitest/no-interpolation-in-snapshots"?: Linter.RuleEntry<[]>;
|
|
11596
13414
|
/**
|
|
11597
|
-
*
|
|
13415
|
+
* disallow large snapshots
|
|
11598
13416
|
* @see https://github.com/veritem/eslint-plugin-vitest/blob/main/docs/rules/no-large-snapshots.md
|
|
11599
13417
|
*/
|
|
11600
13418
|
"vitest/no-large-snapshots"?: Linter.RuleEntry<VitestNoLargeSnapshots>;
|
|
11601
13419
|
/**
|
|
11602
|
-
*
|
|
13420
|
+
* disallow importing from __mocks__ directory
|
|
11603
13421
|
* @see https://github.com/veritem/eslint-plugin-vitest/blob/main/docs/rules/no-mocks-import.md
|
|
11604
13422
|
*/
|
|
11605
13423
|
"vitest/no-mocks-import"?: Linter.RuleEntry<[]>;
|
|
11606
13424
|
/**
|
|
11607
|
-
*
|
|
13425
|
+
* disallow the use of certain matchers
|
|
11608
13426
|
* @see https://github.com/veritem/eslint-plugin-vitest/blob/main/docs/rules/no-restricted-matchers.md
|
|
11609
13427
|
*/
|
|
11610
13428
|
"vitest/no-restricted-matchers"?: Linter.RuleEntry<VitestNoRestrictedMatchers>;
|
|
11611
13429
|
/**
|
|
11612
|
-
*
|
|
13430
|
+
* disallow specific `vi.` methods
|
|
11613
13431
|
* @see https://github.com/veritem/eslint-plugin-vitest/blob/main/docs/rules/no-restricted-vi-methods.md
|
|
11614
13432
|
*/
|
|
11615
13433
|
"vitest/no-restricted-vi-methods"?: Linter.RuleEntry<VitestNoRestrictedViMethods>;
|
|
11616
13434
|
/**
|
|
11617
|
-
*
|
|
13435
|
+
* disallow using `expect` outside of `it` or `test` blocks
|
|
11618
13436
|
* @see https://github.com/veritem/eslint-plugin-vitest/blob/main/docs/rules/no-standalone-expect.md
|
|
11619
13437
|
*/
|
|
11620
13438
|
"vitest/no-standalone-expect"?: Linter.RuleEntry<VitestNoStandaloneExpect>;
|
|
11621
13439
|
/**
|
|
11622
|
-
*
|
|
13440
|
+
* disallow using `test` as a prefix
|
|
11623
13441
|
* @see https://github.com/veritem/eslint-plugin-vitest/blob/main/docs/rules/no-test-prefixes.md
|
|
11624
13442
|
*/
|
|
11625
13443
|
"vitest/no-test-prefixes"?: Linter.RuleEntry<[]>;
|
|
11626
13444
|
/**
|
|
11627
|
-
*
|
|
13445
|
+
* disallow return statements in tests
|
|
11628
13446
|
* @see https://github.com/veritem/eslint-plugin-vitest/blob/main/docs/rules/no-test-return-statement.md
|
|
11629
13447
|
*/
|
|
11630
13448
|
"vitest/no-test-return-statement"?: Linter.RuleEntry<[]>;
|
|
11631
13449
|
/**
|
|
11632
|
-
*
|
|
13450
|
+
* enforce using `toBeCalledWith()` or `toHaveBeenCalledWith()`
|
|
11633
13451
|
* @see https://github.com/veritem/eslint-plugin-vitest/blob/main/docs/rules/prefer-called-with.md
|
|
11634
13452
|
*/
|
|
11635
13453
|
"vitest/prefer-called-with"?: Linter.RuleEntry<[]>;
|
|
11636
13454
|
/**
|
|
11637
|
-
*
|
|
13455
|
+
* enforce using the built-in comparison matchers
|
|
11638
13456
|
* @see https://github.com/veritem/eslint-plugin-vitest/blob/main/docs/rules/prefer-comparison-matcher.md
|
|
11639
13457
|
*/
|
|
11640
13458
|
"vitest/prefer-comparison-matcher"?: Linter.RuleEntry<[]>;
|
|
11641
13459
|
/**
|
|
11642
|
-
*
|
|
13460
|
+
* enforce using `each` rather than manual loops
|
|
11643
13461
|
* @see https://github.com/veritem/eslint-plugin-vitest/blob/main/docs/rules/prefer-each.md
|
|
11644
13462
|
*/
|
|
11645
13463
|
"vitest/prefer-each"?: Linter.RuleEntry<[]>;
|
|
11646
13464
|
/**
|
|
11647
|
-
*
|
|
13465
|
+
* enforce using the built-in quality matchers
|
|
11648
13466
|
* @see https://github.com/veritem/eslint-plugin-vitest/blob/main/docs/rules/prefer-equality-matcher.md
|
|
11649
13467
|
*/
|
|
11650
13468
|
"vitest/prefer-equality-matcher"?: Linter.RuleEntry<[]>;
|
|
11651
13469
|
/**
|
|
11652
|
-
*
|
|
13470
|
+
* enforce using expect assertions instead of callbacks
|
|
11653
13471
|
* @see https://github.com/veritem/eslint-plugin-vitest/blob/main/docs/rules/prefer-expect-assertions.md
|
|
11654
13472
|
*/
|
|
11655
13473
|
"vitest/prefer-expect-assertions"?: Linter.RuleEntry<VitestPreferExpectAssertions>;
|
|
11656
13474
|
/**
|
|
11657
|
-
*
|
|
13475
|
+
* enforce using `expect().resolves` over `expect(await ...)` syntax
|
|
11658
13476
|
* @see https://github.com/veritem/eslint-plugin-vitest/blob/main/docs/rules/prefer-expect-resolves.md
|
|
11659
13477
|
*/
|
|
11660
13478
|
"vitest/prefer-expect-resolves"?: Linter.RuleEntry<[]>;
|
|
11661
13479
|
/**
|
|
11662
|
-
*
|
|
13480
|
+
* enforce having hooks in consistent order
|
|
11663
13481
|
* @see https://github.com/veritem/eslint-plugin-vitest/blob/main/docs/rules/prefer-hooks-in-order.md
|
|
11664
13482
|
*/
|
|
11665
13483
|
"vitest/prefer-hooks-in-order"?: Linter.RuleEntry<[]>;
|
|
11666
13484
|
/**
|
|
11667
|
-
*
|
|
13485
|
+
* enforce having hooks before any test cases
|
|
11668
13486
|
* @see https://github.com/veritem/eslint-plugin-vitest/blob/main/docs/rules/prefer-hooks-on-top.md
|
|
11669
13487
|
*/
|
|
11670
13488
|
"vitest/prefer-hooks-on-top"?: Linter.RuleEntry<[]>;
|
|
11671
13489
|
/**
|
|
11672
|
-
*
|
|
13490
|
+
* enforce lowercase titles
|
|
11673
13491
|
* @see https://github.com/veritem/eslint-plugin-vitest/blob/main/docs/rules/prefer-lowercase-title.md
|
|
11674
13492
|
*/
|
|
11675
13493
|
"vitest/prefer-lowercase-title"?: Linter.RuleEntry<VitestPreferLowercaseTitle>;
|
|
11676
13494
|
/**
|
|
11677
|
-
*
|
|
13495
|
+
* enforce mock resolved/rejected shorthands for promises
|
|
11678
13496
|
* @see https://github.com/veritem/eslint-plugin-vitest/blob/main/docs/rules/prefer-mock-promise-shorthand.md
|
|
11679
13497
|
*/
|
|
11680
13498
|
"vitest/prefer-mock-promise-shorthand"?: Linter.RuleEntry<[]>;
|
|
11681
13499
|
/**
|
|
11682
|
-
*
|
|
13500
|
+
* enforce including a hint with external snapshots
|
|
11683
13501
|
* @see https://github.com/veritem/eslint-plugin-vitest/blob/main/docs/rules/prefer-snapshot-hint.md
|
|
11684
13502
|
*/
|
|
11685
13503
|
"vitest/prefer-snapshot-hint"?: Linter.RuleEntry<VitestPreferSnapshotHint>;
|
|
11686
13504
|
/**
|
|
11687
|
-
*
|
|
13505
|
+
* enforce using `vi.spyOn`
|
|
11688
13506
|
* @see https://github.com/veritem/eslint-plugin-vitest/blob/main/docs/rules/prefer-spy-on.md
|
|
11689
13507
|
*/
|
|
11690
13508
|
"vitest/prefer-spy-on"?: Linter.RuleEntry<[]>;
|
|
11691
13509
|
/**
|
|
11692
|
-
*
|
|
13510
|
+
* enforce strict equal over equal
|
|
11693
13511
|
* @see https://github.com/veritem/eslint-plugin-vitest/blob/main/docs/rules/prefer-strict-equal.md
|
|
11694
13512
|
*/
|
|
11695
13513
|
"vitest/prefer-strict-equal"?: Linter.RuleEntry<[]>;
|
|
11696
13514
|
/**
|
|
11697
|
-
*
|
|
13515
|
+
* enforce using toBe()
|
|
11698
13516
|
* @see https://github.com/veritem/eslint-plugin-vitest/blob/main/docs/rules/prefer-to-be.md
|
|
11699
13517
|
*/
|
|
11700
13518
|
"vitest/prefer-to-be"?: Linter.RuleEntry<[]>;
|
|
11701
13519
|
/**
|
|
11702
|
-
*
|
|
13520
|
+
* enforce using toBeFalsy()
|
|
11703
13521
|
* @see https://github.com/veritem/eslint-plugin-vitest/blob/main/docs/rules/prefer-to-be-falsy.md
|
|
11704
13522
|
*/
|
|
11705
13523
|
"vitest/prefer-to-be-falsy"?: Linter.RuleEntry<[]>;
|
|
11706
13524
|
/**
|
|
11707
|
-
*
|
|
13525
|
+
* enforce using toBeObject()
|
|
11708
13526
|
* @see https://github.com/veritem/eslint-plugin-vitest/blob/main/docs/rules/prefer-to-be-object.md
|
|
11709
13527
|
*/
|
|
11710
13528
|
"vitest/prefer-to-be-object"?: Linter.RuleEntry<[]>;
|
|
11711
13529
|
/**
|
|
11712
|
-
*
|
|
13530
|
+
* enforce using `toBeTruthy`
|
|
11713
13531
|
* @see https://github.com/veritem/eslint-plugin-vitest/blob/main/docs/rules/prefer-to-be-truthy.md
|
|
11714
13532
|
*/
|
|
11715
13533
|
"vitest/prefer-to-be-truthy"?: Linter.RuleEntry<[]>;
|
|
11716
13534
|
/**
|
|
11717
|
-
*
|
|
13535
|
+
* enforce using toContain()
|
|
11718
13536
|
* @see https://github.com/veritem/eslint-plugin-vitest/blob/main/docs/rules/prefer-to-contain.md
|
|
11719
13537
|
*/
|
|
11720
13538
|
"vitest/prefer-to-contain"?: Linter.RuleEntry<[]>;
|
|
11721
13539
|
/**
|
|
11722
|
-
*
|
|
13540
|
+
* enforce using toHaveLength()
|
|
11723
13541
|
* @see https://github.com/veritem/eslint-plugin-vitest/blob/main/docs/rules/prefer-to-have-length.md
|
|
11724
13542
|
*/
|
|
11725
13543
|
"vitest/prefer-to-have-length"?: Linter.RuleEntry<[]>;
|
|
11726
13544
|
/**
|
|
11727
|
-
*
|
|
13545
|
+
* enforce using `test.todo`
|
|
11728
13546
|
* @see https://github.com/veritem/eslint-plugin-vitest/blob/main/docs/rules/prefer-todo.md
|
|
11729
13547
|
*/
|
|
11730
13548
|
"vitest/prefer-todo"?: Linter.RuleEntry<[]>;
|
|
11731
13549
|
/**
|
|
11732
|
-
*
|
|
13550
|
+
* require setup and teardown to be within a hook
|
|
11733
13551
|
* @see https://github.com/veritem/eslint-plugin-vitest/blob/main/docs/rules/require-hook.md
|
|
11734
13552
|
*/
|
|
11735
13553
|
"vitest/require-hook"?: Linter.RuleEntry<VitestRequireHook>;
|
|
11736
13554
|
/**
|
|
11737
|
-
*
|
|
13555
|
+
* require local Test Context for concurrent snapshot tests
|
|
11738
13556
|
* @see https://github.com/veritem/eslint-plugin-vitest/blob/main/docs/rules/require-local-test-context-for-concurrent-snapshots.md
|
|
11739
13557
|
*/
|
|
11740
13558
|
"vitest/require-local-test-context-for-concurrent-snapshots"?: Linter.RuleEntry<
|
|
11741
13559
|
[]
|
|
11742
13560
|
>;
|
|
11743
13561
|
/**
|
|
11744
|
-
*
|
|
13562
|
+
* require toThrow() to be called with an error message
|
|
11745
13563
|
* @see https://github.com/veritem/eslint-plugin-vitest/blob/main/docs/rules/require-to-throw-message.md
|
|
11746
13564
|
*/
|
|
11747
13565
|
"vitest/require-to-throw-message"?: Linter.RuleEntry<[]>;
|
|
11748
13566
|
/**
|
|
11749
|
-
*
|
|
13567
|
+
* enforce that all tests are in a top-level describe
|
|
11750
13568
|
* @see https://github.com/veritem/eslint-plugin-vitest/blob/main/docs/rules/require-top-level-describe.md
|
|
11751
13569
|
*/
|
|
11752
13570
|
"vitest/require-top-level-describe"?: Linter.RuleEntry<VitestRequireTopLevelDescribe>;
|
|
11753
13571
|
/**
|
|
11754
|
-
*
|
|
13572
|
+
* enforce valid describe callback
|
|
11755
13573
|
* @see https://github.com/veritem/eslint-plugin-vitest/blob/main/docs/rules/valid-describe-callback.md
|
|
11756
13574
|
*/
|
|
11757
13575
|
"vitest/valid-describe-callback"?: Linter.RuleEntry<[]>;
|
|
11758
13576
|
/**
|
|
11759
|
-
*
|
|
13577
|
+
* enforce valid `expect()` usage
|
|
11760
13578
|
* @see https://github.com/veritem/eslint-plugin-vitest/blob/main/docs/rules/valid-expect.md
|
|
11761
13579
|
*/
|
|
11762
13580
|
"vitest/valid-expect"?: Linter.RuleEntry<VitestValidExpect>;
|
|
11763
13581
|
/**
|
|
11764
|
-
*
|
|
13582
|
+
* enforce valid titles
|
|
11765
13583
|
* @see https://github.com/veritem/eslint-plugin-vitest/blob/main/docs/rules/valid-title.md
|
|
11766
13584
|
*/
|
|
11767
13585
|
"vitest/valid-title"?: Linter.RuleEntry<VitestValidTitle>;
|
|
@@ -20379,7 +22197,7 @@ declare function importPluginMarkdown(): Promise<{
|
|
|
20379
22197
|
}>;
|
|
20380
22198
|
declare function importPluginJsdoc(): Promise<{
|
|
20381
22199
|
pluginJsdoc: eslint.ESLint.Plugin & {
|
|
20382
|
-
configs: Record<"recommended" | "recommended-error" | "recommended-typescript" | "recommended-typescript-error" | "recommended-typescript-flavor" | "recommended-typescript-flavor-error" | "flat/recommended" | "flat/recommended-error" | "flat/recommended-typescript" | "flat/recommended-typescript-error" | "flat/recommended-typescript-flavor" | "flat/recommended-typescript-flavor-error", eslint.Linter.FlatConfig
|
|
22200
|
+
configs: Record<"recommended" | "recommended-error" | "recommended-typescript" | "recommended-typescript-error" | "recommended-typescript-flavor" | "recommended-typescript-flavor-error" | "flat/recommended" | "flat/recommended-error" | "flat/recommended-typescript" | "flat/recommended-typescript-error" | "flat/recommended-typescript-flavor" | "flat/recommended-typescript-flavor-error", eslint.Linter.FlatConfig<eslint.Linter.RulesRecord>>;
|
|
20383
22201
|
};
|
|
20384
22202
|
}>;
|
|
20385
22203
|
declare function importPluginStylistic(): Promise<{
|