@lichthagel/eslint-config 1.0.22 → 1.0.24

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.
Files changed (3) hide show
  1. package/dist/index.d.cts +459 -244
  2. package/dist/index.d.ts +459 -244
  3. package/package.json +2 -2
package/dist/index.d.cts CHANGED
@@ -3265,11 +3265,21 @@ interface RuleOptions {
3265
3265
  * @see https://sveltejs.github.io/eslint-plugin-svelte/rules/no-unknown-style-directive-property/
3266
3266
  */
3267
3267
  'svelte/no-unknown-style-directive-property'?: Linter.RuleEntry<SvelteNoUnknownStyleDirectiveProperty>
3268
+ /**
3269
+ * Disallow unnecessary $state wrapping of reactive classes
3270
+ * @see https://sveltejs.github.io/eslint-plugin-svelte/rules/no-unnecessary-state-wrap/
3271
+ */
3272
+ 'svelte/no-unnecessary-state-wrap'?: Linter.RuleEntry<SvelteNoUnnecessaryStateWrap>
3268
3273
  /**
3269
3274
  * disallow the use of a class in the template without a corresponding style
3270
3275
  * @see https://sveltejs.github.io/eslint-plugin-svelte/rules/no-unused-class-name/
3271
3276
  */
3272
3277
  'svelte/no-unused-class-name'?: Linter.RuleEntry<SvelteNoUnusedClassName>
3278
+ /**
3279
+ * Warns about defined Props properties that are unused
3280
+ * @see https://sveltejs.github.io/eslint-plugin-svelte/rules/no-unused-props/
3281
+ */
3282
+ 'svelte/no-unused-props'?: Linter.RuleEntry<SvelteNoUnusedProps>
3273
3283
  /**
3274
3284
  * disallow unused svelte-ignore comments
3275
3285
  * @see https://sveltejs.github.io/eslint-plugin-svelte/rules/no-unused-svelte-ignore/
@@ -3450,642 +3460,643 @@ interface RuleOptions {
3450
3460
  'unicode-bom'?: Linter.RuleEntry<UnicodeBom>
3451
3461
  /**
3452
3462
  * Improve regexes by making them shorter, consistent, and safer.
3453
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/better-regex.md
3463
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/better-regex.md
3454
3464
  */
3455
3465
  'unicorn/better-regex'?: Linter.RuleEntry<UnicornBetterRegex>
3456
3466
  /**
3457
3467
  * Enforce a specific parameter name in catch clauses.
3458
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/catch-error-name.md
3468
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/catch-error-name.md
3459
3469
  */
3460
3470
  'unicorn/catch-error-name'?: Linter.RuleEntry<UnicornCatchErrorName>
3461
3471
  /**
3462
3472
  * Enforce consistent assertion style with `node:assert`.
3463
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/consistent-assert.md
3473
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/consistent-assert.md
3464
3474
  */
3465
3475
  'unicorn/consistent-assert'?: Linter.RuleEntry<[]>
3466
3476
  /**
3467
3477
  * Prefer passing `Date` directly to the constructor when cloning.
3468
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/consistent-date-clone.md
3478
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/consistent-date-clone.md
3469
3479
  */
3470
3480
  'unicorn/consistent-date-clone'?: Linter.RuleEntry<[]>
3471
3481
  /**
3472
3482
  * Use destructured variables over properties.
3473
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/consistent-destructuring.md
3483
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/consistent-destructuring.md
3474
3484
  */
3475
3485
  'unicorn/consistent-destructuring'?: Linter.RuleEntry<[]>
3476
3486
  /**
3477
3487
  * Prefer consistent types when spreading a ternary in an array literal.
3478
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/consistent-empty-array-spread.md
3488
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/consistent-empty-array-spread.md
3479
3489
  */
3480
3490
  'unicorn/consistent-empty-array-spread'?: Linter.RuleEntry<[]>
3481
3491
  /**
3482
3492
  * Enforce consistent style for element existence checks with `indexOf()`, `lastIndexOf()`, `findIndex()`, and `findLastIndex()`.
3483
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/consistent-existence-index-check.md
3493
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/consistent-existence-index-check.md
3484
3494
  */
3485
3495
  'unicorn/consistent-existence-index-check'?: Linter.RuleEntry<[]>
3486
3496
  /**
3487
3497
  * Move function definitions to the highest possible scope.
3488
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/consistent-function-scoping.md
3498
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/consistent-function-scoping.md
3489
3499
  */
3490
3500
  'unicorn/consistent-function-scoping'?: Linter.RuleEntry<UnicornConsistentFunctionScoping>
3491
3501
  /**
3492
3502
  * Enforce correct `Error` subclassing.
3493
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/custom-error-definition.md
3503
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/custom-error-definition.md
3494
3504
  */
3495
3505
  'unicorn/custom-error-definition'?: Linter.RuleEntry<[]>
3496
3506
  /**
3497
3507
  * Enforce no spaces between braces.
3498
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/empty-brace-spaces.md
3508
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/empty-brace-spaces.md
3499
3509
  */
3500
3510
  'unicorn/empty-brace-spaces'?: Linter.RuleEntry<[]>
3501
3511
  /**
3502
3512
  * Enforce passing a `message` value when creating a built-in error.
3503
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/error-message.md
3513
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/error-message.md
3504
3514
  */
3505
3515
  'unicorn/error-message'?: Linter.RuleEntry<[]>
3506
3516
  /**
3507
- * Require escape sequences to use uppercase values.
3508
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/escape-case.md
3517
+ * Require escape sequences to use uppercase or lowercase values.
3518
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/escape-case.md
3509
3519
  */
3510
- 'unicorn/escape-case'?: Linter.RuleEntry<[]>
3520
+ 'unicorn/escape-case'?: Linter.RuleEntry<UnicornEscapeCase>
3511
3521
  /**
3512
3522
  * Add expiration conditions to TODO comments.
3513
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/expiring-todo-comments.md
3523
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/expiring-todo-comments.md
3514
3524
  */
3515
3525
  'unicorn/expiring-todo-comments'?: Linter.RuleEntry<UnicornExpiringTodoComments>
3516
3526
  /**
3517
3527
  * Enforce explicitly comparing the `length` or `size` property of a value.
3518
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/explicit-length-check.md
3528
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/explicit-length-check.md
3519
3529
  */
3520
3530
  'unicorn/explicit-length-check'?: Linter.RuleEntry<UnicornExplicitLengthCheck>
3521
3531
  /**
3522
3532
  * Enforce a case style for filenames.
3523
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/filename-case.md
3533
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/filename-case.md
3524
3534
  */
3525
3535
  'unicorn/filename-case'?: Linter.RuleEntry<UnicornFilenameCase>
3526
3536
  /**
3527
3537
  * Enforce specific import styles per module.
3528
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/import-style.md
3538
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/import-style.md
3529
3539
  */
3530
3540
  'unicorn/import-style'?: Linter.RuleEntry<UnicornImportStyle>
3531
3541
  /**
3532
3542
  * Enforce the use of `new` for all builtins, except `String`, `Number`, `Boolean`, `Symbol` and `BigInt`.
3533
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/new-for-builtins.md
3543
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/new-for-builtins.md
3534
3544
  */
3535
3545
  'unicorn/new-for-builtins'?: Linter.RuleEntry<[]>
3536
3546
  /**
3537
3547
  * Enforce specifying rules to disable in `eslint-disable` comments.
3538
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/no-abusive-eslint-disable.md
3548
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/no-abusive-eslint-disable.md
3539
3549
  */
3540
3550
  'unicorn/no-abusive-eslint-disable'?: Linter.RuleEntry<[]>
3541
3551
  /**
3542
3552
  * Disallow recursive access to `this` within getters and setters.
3543
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/no-accessor-recursion.md
3553
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/no-accessor-recursion.md
3544
3554
  */
3545
3555
  'unicorn/no-accessor-recursion'?: Linter.RuleEntry<[]>
3546
3556
  /**
3547
3557
  * Disallow anonymous functions and classes as the default export.
3548
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/no-anonymous-default-export.md
3558
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/no-anonymous-default-export.md
3549
3559
  */
3550
3560
  'unicorn/no-anonymous-default-export'?: Linter.RuleEntry<[]>
3551
3561
  /**
3552
3562
  * Prevent passing a function reference directly to iterator methods.
3553
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/no-array-callback-reference.md
3563
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/no-array-callback-reference.md
3554
3564
  */
3555
3565
  'unicorn/no-array-callback-reference'?: Linter.RuleEntry<[]>
3556
3566
  /**
3557
3567
  * Prefer `for…of` over the `forEach` method.
3558
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/no-array-for-each.md
3568
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/no-array-for-each.md
3559
3569
  */
3560
3570
  'unicorn/no-array-for-each'?: Linter.RuleEntry<[]>
3561
3571
  /**
3562
3572
  * Disallow using the `this` argument in array methods.
3563
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/no-array-method-this-argument.md
3573
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/no-array-method-this-argument.md
3564
3574
  */
3565
3575
  'unicorn/no-array-method-this-argument'?: Linter.RuleEntry<[]>
3566
3576
  /**
3567
3577
  * Enforce combining multiple `Array#push()` into one call.
3568
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/no-array-push-push.md
3578
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/no-array-push-push.md
3569
3579
  */
3570
3580
  'unicorn/no-array-push-push'?: Linter.RuleEntry<UnicornNoArrayPushPush>
3571
3581
  /**
3572
3582
  * Disallow `Array#reduce()` and `Array#reduceRight()`.
3573
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/no-array-reduce.md
3583
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/no-array-reduce.md
3574
3584
  */
3575
3585
  'unicorn/no-array-reduce'?: Linter.RuleEntry<UnicornNoArrayReduce>
3576
3586
  /**
3577
3587
  * Disallow member access from await expression.
3578
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/no-await-expression-member.md
3588
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/no-await-expression-member.md
3579
3589
  */
3580
3590
  'unicorn/no-await-expression-member'?: Linter.RuleEntry<[]>
3581
3591
  /**
3582
3592
  * Disallow using `await` in `Promise` method parameters.
3583
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/no-await-in-promise-methods.md
3593
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/no-await-in-promise-methods.md
3584
3594
  */
3585
3595
  'unicorn/no-await-in-promise-methods'?: Linter.RuleEntry<[]>
3586
3596
  /**
3587
3597
  * Do not use leading/trailing space between `console.log` parameters.
3588
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/no-console-spaces.md
3598
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/no-console-spaces.md
3589
3599
  */
3590
3600
  'unicorn/no-console-spaces'?: Linter.RuleEntry<[]>
3591
3601
  /**
3592
3602
  * Do not use `document.cookie` directly.
3593
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/no-document-cookie.md
3603
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/no-document-cookie.md
3594
3604
  */
3595
3605
  'unicorn/no-document-cookie'?: Linter.RuleEntry<[]>
3596
3606
  /**
3597
3607
  * Disallow empty files.
3598
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/no-empty-file.md
3608
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/no-empty-file.md
3599
3609
  */
3600
3610
  'unicorn/no-empty-file'?: Linter.RuleEntry<[]>
3601
3611
  /**
3602
3612
  * Do not use a `for` loop that can be replaced with a `for-of` loop.
3603
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/no-for-loop.md
3613
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/no-for-loop.md
3604
3614
  */
3605
3615
  'unicorn/no-for-loop'?: Linter.RuleEntry<[]>
3606
3616
  /**
3607
3617
  * Enforce the use of Unicode escapes instead of hexadecimal escapes.
3608
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/no-hex-escape.md
3618
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/no-hex-escape.md
3609
3619
  */
3610
3620
  'unicorn/no-hex-escape'?: Linter.RuleEntry<[]>
3611
3621
  /**
3612
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/deprecated-rules.md#no-instanceof-array
3622
+ * Replaced by `unicorn/no-instanceof-builtins` which covers more cases.
3623
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/deprecated-rules.md#no-instanceof-array
3613
3624
  * @deprecated
3614
3625
  */
3615
3626
  'unicorn/no-instanceof-array'?: Linter.RuleEntry<[]>
3616
3627
  /**
3617
3628
  * Disallow `instanceof` with built-in objects
3618
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/no-instanceof-builtins.md
3629
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/no-instanceof-builtins.md
3619
3630
  */
3620
3631
  'unicorn/no-instanceof-builtins'?: Linter.RuleEntry<UnicornNoInstanceofBuiltins>
3621
3632
  /**
3622
3633
  * Disallow invalid options in `fetch()` and `new Request()`.
3623
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/no-invalid-fetch-options.md
3634
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/no-invalid-fetch-options.md
3624
3635
  */
3625
3636
  'unicorn/no-invalid-fetch-options'?: Linter.RuleEntry<[]>
3626
3637
  /**
3627
3638
  * Prevent calling `EventTarget#removeEventListener()` with the result of an expression.
3628
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/no-invalid-remove-event-listener.md
3639
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/no-invalid-remove-event-listener.md
3629
3640
  */
3630
3641
  'unicorn/no-invalid-remove-event-listener'?: Linter.RuleEntry<[]>
3631
3642
  /**
3632
3643
  * Disallow identifiers starting with `new` or `class`.
3633
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/no-keyword-prefix.md
3644
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/no-keyword-prefix.md
3634
3645
  */
3635
3646
  'unicorn/no-keyword-prefix'?: Linter.RuleEntry<UnicornNoKeywordPrefix>
3636
3647
  /**
3637
3648
  * Disallow using `.length` as the `end` argument of `{Array,String,TypedArray}#slice()`.
3638
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/no-length-as-slice-end.md
3649
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/no-length-as-slice-end.md
3639
3650
  */
3640
3651
  'unicorn/no-length-as-slice-end'?: Linter.RuleEntry<[]>
3641
3652
  /**
3642
3653
  * Disallow `if` statements as the only statement in `if` blocks without `else`.
3643
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/no-lonely-if.md
3654
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/no-lonely-if.md
3644
3655
  */
3645
3656
  'unicorn/no-lonely-if'?: Linter.RuleEntry<[]>
3646
3657
  /**
3647
3658
  * Disallow a magic number as the `depth` argument in `Array#flat(…).`
3648
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/no-magic-array-flat-depth.md
3659
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/no-magic-array-flat-depth.md
3649
3660
  */
3650
3661
  'unicorn/no-magic-array-flat-depth'?: Linter.RuleEntry<[]>
3651
3662
  /**
3652
3663
  * Disallow named usage of default import and export.
3653
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/no-named-default.md
3664
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/no-named-default.md
3654
3665
  */
3655
3666
  'unicorn/no-named-default'?: Linter.RuleEntry<[]>
3656
3667
  /**
3657
3668
  * Disallow negated conditions.
3658
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/no-negated-condition.md
3669
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/no-negated-condition.md
3659
3670
  */
3660
3671
  'unicorn/no-negated-condition'?: Linter.RuleEntry<[]>
3661
3672
  /**
3662
3673
  * Disallow negated expression in equality check.
3663
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/no-negation-in-equality-check.md
3674
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/no-negation-in-equality-check.md
3664
3675
  */
3665
3676
  'unicorn/no-negation-in-equality-check'?: Linter.RuleEntry<[]>
3666
3677
  /**
3667
3678
  * Disallow nested ternary expressions.
3668
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/no-nested-ternary.md
3679
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/no-nested-ternary.md
3669
3680
  */
3670
3681
  'unicorn/no-nested-ternary'?: Linter.RuleEntry<[]>
3671
3682
  /**
3672
3683
  * Disallow `new Array()`.
3673
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/no-new-array.md
3684
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/no-new-array.md
3674
3685
  */
3675
3686
  'unicorn/no-new-array'?: Linter.RuleEntry<[]>
3676
3687
  /**
3677
3688
  * Enforce the use of `Buffer.from()` and `Buffer.alloc()` instead of the deprecated `new Buffer()`.
3678
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/no-new-buffer.md
3689
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/no-new-buffer.md
3679
3690
  */
3680
3691
  'unicorn/no-new-buffer'?: Linter.RuleEntry<[]>
3681
3692
  /**
3682
3693
  * Disallow the use of the `null` literal.
3683
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/no-null.md
3694
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/no-null.md
3684
3695
  */
3685
3696
  'unicorn/no-null'?: Linter.RuleEntry<UnicornNoNull>
3686
3697
  /**
3687
3698
  * Disallow the use of objects as default parameters.
3688
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/no-object-as-default-parameter.md
3699
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/no-object-as-default-parameter.md
3689
3700
  */
3690
3701
  'unicorn/no-object-as-default-parameter'?: Linter.RuleEntry<[]>
3691
3702
  /**
3692
3703
  * Disallow `process.exit()`.
3693
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/no-process-exit.md
3704
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/no-process-exit.md
3694
3705
  */
3695
3706
  'unicorn/no-process-exit'?: Linter.RuleEntry<[]>
3696
3707
  /**
3697
3708
  * Disallow passing single-element arrays to `Promise` methods.
3698
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/no-single-promise-in-promise-methods.md
3709
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/no-single-promise-in-promise-methods.md
3699
3710
  */
3700
3711
  'unicorn/no-single-promise-in-promise-methods'?: Linter.RuleEntry<[]>
3701
3712
  /**
3702
3713
  * Disallow classes that only have static members.
3703
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/no-static-only-class.md
3714
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/no-static-only-class.md
3704
3715
  */
3705
3716
  'unicorn/no-static-only-class'?: Linter.RuleEntry<[]>
3706
3717
  /**
3707
3718
  * Disallow `then` property.
3708
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/no-thenable.md
3719
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/no-thenable.md
3709
3720
  */
3710
3721
  'unicorn/no-thenable'?: Linter.RuleEntry<[]>
3711
3722
  /**
3712
3723
  * Disallow assigning `this` to a variable.
3713
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/no-this-assignment.md
3724
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/no-this-assignment.md
3714
3725
  */
3715
3726
  'unicorn/no-this-assignment'?: Linter.RuleEntry<[]>
3716
3727
  /**
3717
3728
  * Disallow comparing `undefined` using `typeof`.
3718
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/no-typeof-undefined.md
3729
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/no-typeof-undefined.md
3719
3730
  */
3720
3731
  'unicorn/no-typeof-undefined'?: Linter.RuleEntry<UnicornNoTypeofUndefined>
3721
3732
  /**
3722
3733
  * Disallow awaiting non-promise values.
3723
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/no-unnecessary-await.md
3734
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/no-unnecessary-await.md
3724
3735
  */
3725
3736
  'unicorn/no-unnecessary-await'?: Linter.RuleEntry<[]>
3726
3737
  /**
3727
3738
  * Enforce the use of built-in methods instead of unnecessary polyfills.
3728
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/no-unnecessary-polyfills.md
3739
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/no-unnecessary-polyfills.md
3729
3740
  */
3730
3741
  'unicorn/no-unnecessary-polyfills'?: Linter.RuleEntry<UnicornNoUnnecessaryPolyfills>
3731
3742
  /**
3732
3743
  * Disallow unreadable array destructuring.
3733
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/no-unreadable-array-destructuring.md
3744
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/no-unreadable-array-destructuring.md
3734
3745
  */
3735
3746
  'unicorn/no-unreadable-array-destructuring'?: Linter.RuleEntry<[]>
3736
3747
  /**
3737
3748
  * Disallow unreadable IIFEs.
3738
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/no-unreadable-iife.md
3749
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/no-unreadable-iife.md
3739
3750
  */
3740
3751
  'unicorn/no-unreadable-iife'?: Linter.RuleEntry<[]>
3741
3752
  /**
3742
3753
  * Disallow unused object properties.
3743
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/no-unused-properties.md
3754
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/no-unused-properties.md
3744
3755
  */
3745
3756
  'unicorn/no-unused-properties'?: Linter.RuleEntry<[]>
3746
3757
  /**
3747
3758
  * Disallow useless fallback when spreading in object literals.
3748
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/no-useless-fallback-in-spread.md
3759
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/no-useless-fallback-in-spread.md
3749
3760
  */
3750
3761
  'unicorn/no-useless-fallback-in-spread'?: Linter.RuleEntry<[]>
3751
3762
  /**
3752
3763
  * Disallow useless array length check.
3753
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/no-useless-length-check.md
3764
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/no-useless-length-check.md
3754
3765
  */
3755
3766
  'unicorn/no-useless-length-check'?: Linter.RuleEntry<[]>
3756
3767
  /**
3757
3768
  * Disallow returning/yielding `Promise.resolve/reject()` in async functions or promise callbacks
3758
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/no-useless-promise-resolve-reject.md
3769
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/no-useless-promise-resolve-reject.md
3759
3770
  */
3760
3771
  'unicorn/no-useless-promise-resolve-reject'?: Linter.RuleEntry<[]>
3761
3772
  /**
3762
3773
  * Disallow unnecessary spread.
3763
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/no-useless-spread.md
3774
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/no-useless-spread.md
3764
3775
  */
3765
3776
  'unicorn/no-useless-spread'?: Linter.RuleEntry<[]>
3766
3777
  /**
3767
3778
  * Disallow useless case in switch statements.
3768
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/no-useless-switch-case.md
3779
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/no-useless-switch-case.md
3769
3780
  */
3770
3781
  'unicorn/no-useless-switch-case'?: Linter.RuleEntry<[]>
3771
3782
  /**
3772
3783
  * Disallow useless `undefined`.
3773
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/no-useless-undefined.md
3784
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/no-useless-undefined.md
3774
3785
  */
3775
3786
  'unicorn/no-useless-undefined'?: Linter.RuleEntry<UnicornNoUselessUndefined>
3776
3787
  /**
3777
3788
  * Disallow number literals with zero fractions or dangling dots.
3778
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/no-zero-fractions.md
3789
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/no-zero-fractions.md
3779
3790
  */
3780
3791
  'unicorn/no-zero-fractions'?: Linter.RuleEntry<[]>
3781
3792
  /**
3782
3793
  * Enforce proper case for numeric literals.
3783
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/number-literal-case.md
3794
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/number-literal-case.md
3784
3795
  */
3785
- 'unicorn/number-literal-case'?: Linter.RuleEntry<[]>
3796
+ 'unicorn/number-literal-case'?: Linter.RuleEntry<UnicornNumberLiteralCase>
3786
3797
  /**
3787
3798
  * Enforce the style of numeric separators by correctly grouping digits.
3788
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/numeric-separators-style.md
3799
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/numeric-separators-style.md
3789
3800
  */
3790
3801
  'unicorn/numeric-separators-style'?: Linter.RuleEntry<UnicornNumericSeparatorsStyle>
3791
3802
  /**
3792
3803
  * Prefer `.addEventListener()` and `.removeEventListener()` over `on`-functions.
3793
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/prefer-add-event-listener.md
3804
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/prefer-add-event-listener.md
3794
3805
  */
3795
3806
  'unicorn/prefer-add-event-listener'?: Linter.RuleEntry<UnicornPreferAddEventListener>
3796
3807
  /**
3797
3808
  * Prefer `.find(…)` and `.findLast(…)` over the first or last element from `.filter(…)`.
3798
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/prefer-array-find.md
3809
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/prefer-array-find.md
3799
3810
  */
3800
3811
  'unicorn/prefer-array-find'?: Linter.RuleEntry<UnicornPreferArrayFind>
3801
3812
  /**
3802
3813
  * Prefer `Array#flat()` over legacy techniques to flatten arrays.
3803
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/prefer-array-flat.md
3814
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/prefer-array-flat.md
3804
3815
  */
3805
3816
  'unicorn/prefer-array-flat'?: Linter.RuleEntry<UnicornPreferArrayFlat>
3806
3817
  /**
3807
3818
  * Prefer `.flatMap(…)` over `.map(…).flat()`.
3808
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/prefer-array-flat-map.md
3819
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/prefer-array-flat-map.md
3809
3820
  */
3810
3821
  'unicorn/prefer-array-flat-map'?: Linter.RuleEntry<[]>
3811
3822
  /**
3812
3823
  * Prefer `Array#{indexOf,lastIndexOf}()` over `Array#{findIndex,findLastIndex}()` when looking for the index of an item.
3813
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/prefer-array-index-of.md
3824
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/prefer-array-index-of.md
3814
3825
  */
3815
3826
  'unicorn/prefer-array-index-of'?: Linter.RuleEntry<[]>
3816
3827
  /**
3817
3828
  * Prefer `.some(…)` over `.filter(…).length` check and `.{find,findLast,findIndex,findLastIndex}(…)`.
3818
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/prefer-array-some.md
3829
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/prefer-array-some.md
3819
3830
  */
3820
3831
  'unicorn/prefer-array-some'?: Linter.RuleEntry<[]>
3821
3832
  /**
3822
3833
  * Prefer `.at()` method for index access and `String#charAt()`.
3823
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/prefer-at.md
3834
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/prefer-at.md
3824
3835
  */
3825
3836
  'unicorn/prefer-at'?: Linter.RuleEntry<UnicornPreferAt>
3826
3837
  /**
3827
3838
  * Prefer `Blob#arrayBuffer()` over `FileReader#readAsArrayBuffer(…)` and `Blob#text()` over `FileReader#readAsText(…)`.
3828
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/prefer-blob-reading-methods.md
3839
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/prefer-blob-reading-methods.md
3829
3840
  */
3830
3841
  'unicorn/prefer-blob-reading-methods'?: Linter.RuleEntry<[]>
3831
3842
  /**
3832
3843
  * Prefer `String#codePointAt(…)` over `String#charCodeAt(…)` and `String.fromCodePoint(…)` over `String.fromCharCode(…)`.
3833
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/prefer-code-point.md
3844
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/prefer-code-point.md
3834
3845
  */
3835
3846
  'unicorn/prefer-code-point'?: Linter.RuleEntry<[]>
3836
3847
  /**
3837
3848
  * Prefer `Date.now()` to get the number of milliseconds since the Unix Epoch.
3838
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/prefer-date-now.md
3849
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/prefer-date-now.md
3839
3850
  */
3840
3851
  'unicorn/prefer-date-now'?: Linter.RuleEntry<[]>
3841
3852
  /**
3842
3853
  * Prefer default parameters over reassignment.
3843
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/prefer-default-parameters.md
3854
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/prefer-default-parameters.md
3844
3855
  */
3845
3856
  'unicorn/prefer-default-parameters'?: Linter.RuleEntry<[]>
3846
3857
  /**
3847
3858
  * Prefer `Node#append()` over `Node#appendChild()`.
3848
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/prefer-dom-node-append.md
3859
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/prefer-dom-node-append.md
3849
3860
  */
3850
3861
  'unicorn/prefer-dom-node-append'?: Linter.RuleEntry<[]>
3851
3862
  /**
3852
3863
  * Prefer using `.dataset` on DOM elements over calling attribute methods.
3853
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/prefer-dom-node-dataset.md
3864
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/prefer-dom-node-dataset.md
3854
3865
  */
3855
3866
  'unicorn/prefer-dom-node-dataset'?: Linter.RuleEntry<[]>
3856
3867
  /**
3857
3868
  * Prefer `childNode.remove()` over `parentNode.removeChild(childNode)`.
3858
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/prefer-dom-node-remove.md
3869
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/prefer-dom-node-remove.md
3859
3870
  */
3860
3871
  'unicorn/prefer-dom-node-remove'?: Linter.RuleEntry<[]>
3861
3872
  /**
3862
3873
  * Prefer `.textContent` over `.innerText`.
3863
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/prefer-dom-node-text-content.md
3874
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/prefer-dom-node-text-content.md
3864
3875
  */
3865
3876
  'unicorn/prefer-dom-node-text-content'?: Linter.RuleEntry<[]>
3866
3877
  /**
3867
3878
  * Prefer `EventTarget` over `EventEmitter`.
3868
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/prefer-event-target.md
3879
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/prefer-event-target.md
3869
3880
  */
3870
3881
  'unicorn/prefer-event-target'?: Linter.RuleEntry<[]>
3871
3882
  /**
3872
3883
  * Prefer `export…from` when re-exporting.
3873
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/prefer-export-from.md
3884
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/prefer-export-from.md
3874
3885
  */
3875
3886
  'unicorn/prefer-export-from'?: Linter.RuleEntry<UnicornPreferExportFrom>
3876
3887
  /**
3877
3888
  * Prefer `globalThis` over `window`, `self`, and `global`.
3878
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/prefer-global-this.md
3889
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/prefer-global-this.md
3879
3890
  */
3880
3891
  'unicorn/prefer-global-this'?: Linter.RuleEntry<[]>
3881
3892
  /**
3882
3893
  * Prefer `.includes()` over `.indexOf()`, `.lastIndexOf()`, and `Array#some()` when checking for existence or non-existence.
3883
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/prefer-includes.md
3894
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/prefer-includes.md
3884
3895
  */
3885
3896
  'unicorn/prefer-includes'?: Linter.RuleEntry<[]>
3886
3897
  /**
3887
3898
  * Prefer reading a JSON file as a buffer.
3888
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/prefer-json-parse-buffer.md
3899
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/prefer-json-parse-buffer.md
3889
3900
  */
3890
3901
  'unicorn/prefer-json-parse-buffer'?: Linter.RuleEntry<[]>
3891
3902
  /**
3892
3903
  * Prefer `KeyboardEvent#key` over `KeyboardEvent#keyCode`.
3893
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/prefer-keyboard-event-key.md
3904
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/prefer-keyboard-event-key.md
3894
3905
  */
3895
3906
  'unicorn/prefer-keyboard-event-key'?: Linter.RuleEntry<[]>
3896
3907
  /**
3897
3908
  * Prefer using a logical operator over a ternary.
3898
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/prefer-logical-operator-over-ternary.md
3909
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/prefer-logical-operator-over-ternary.md
3899
3910
  */
3900
3911
  'unicorn/prefer-logical-operator-over-ternary'?: Linter.RuleEntry<[]>
3901
3912
  /**
3902
3913
  * Prefer `Math.min()` and `Math.max()` over ternaries for simple comparisons.
3903
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/prefer-math-min-max.md
3914
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/prefer-math-min-max.md
3904
3915
  */
3905
3916
  'unicorn/prefer-math-min-max'?: Linter.RuleEntry<[]>
3906
3917
  /**
3907
3918
  * Enforce the use of `Math.trunc` instead of bitwise operators.
3908
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/prefer-math-trunc.md
3919
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/prefer-math-trunc.md
3909
3920
  */
3910
3921
  'unicorn/prefer-math-trunc'?: Linter.RuleEntry<[]>
3911
3922
  /**
3912
3923
  * Prefer `.before()` over `.insertBefore()`, `.replaceWith()` over `.replaceChild()`, prefer one of `.before()`, `.after()`, `.append()` or `.prepend()` over `insertAdjacentText()` and `insertAdjacentElement()`.
3913
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/prefer-modern-dom-apis.md
3924
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/prefer-modern-dom-apis.md
3914
3925
  */
3915
3926
  'unicorn/prefer-modern-dom-apis'?: Linter.RuleEntry<[]>
3916
3927
  /**
3917
3928
  * Prefer modern `Math` APIs over legacy patterns.
3918
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/prefer-modern-math-apis.md
3929
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/prefer-modern-math-apis.md
3919
3930
  */
3920
3931
  'unicorn/prefer-modern-math-apis'?: Linter.RuleEntry<[]>
3921
3932
  /**
3922
3933
  * Prefer JavaScript modules (ESM) over CommonJS.
3923
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/prefer-module.md
3934
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/prefer-module.md
3924
3935
  */
3925
3936
  'unicorn/prefer-module'?: Linter.RuleEntry<[]>
3926
3937
  /**
3927
3938
  * Prefer using `String`, `Number`, `BigInt`, `Boolean`, and `Symbol` directly.
3928
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/prefer-native-coercion-functions.md
3939
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/prefer-native-coercion-functions.md
3929
3940
  */
3930
3941
  'unicorn/prefer-native-coercion-functions'?: Linter.RuleEntry<[]>
3931
3942
  /**
3932
3943
  * Prefer negative index over `.length - index` when possible.
3933
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/prefer-negative-index.md
3944
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/prefer-negative-index.md
3934
3945
  */
3935
3946
  'unicorn/prefer-negative-index'?: Linter.RuleEntry<[]>
3936
3947
  /**
3937
3948
  * Prefer using the `node:` protocol when importing Node.js builtin modules.
3938
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/prefer-node-protocol.md
3949
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/prefer-node-protocol.md
3939
3950
  */
3940
3951
  'unicorn/prefer-node-protocol'?: Linter.RuleEntry<[]>
3941
3952
  /**
3942
3953
  * Prefer `Number` static properties over global ones.
3943
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/prefer-number-properties.md
3954
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/prefer-number-properties.md
3944
3955
  */
3945
3956
  'unicorn/prefer-number-properties'?: Linter.RuleEntry<UnicornPreferNumberProperties>
3946
3957
  /**
3947
3958
  * Prefer using `Object.fromEntries(…)` to transform a list of key-value pairs into an object.
3948
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/prefer-object-from-entries.md
3959
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/prefer-object-from-entries.md
3949
3960
  */
3950
3961
  'unicorn/prefer-object-from-entries'?: Linter.RuleEntry<UnicornPreferObjectFromEntries>
3951
3962
  /**
3952
3963
  * Prefer omitting the `catch` binding parameter.
3953
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/prefer-optional-catch-binding.md
3964
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/prefer-optional-catch-binding.md
3954
3965
  */
3955
3966
  'unicorn/prefer-optional-catch-binding'?: Linter.RuleEntry<[]>
3956
3967
  /**
3957
3968
  * Prefer borrowing methods from the prototype instead of the instance.
3958
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/prefer-prototype-methods.md
3969
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/prefer-prototype-methods.md
3959
3970
  */
3960
3971
  'unicorn/prefer-prototype-methods'?: Linter.RuleEntry<[]>
3961
3972
  /**
3962
3973
  * Prefer `.querySelector()` over `.getElementById()`, `.querySelectorAll()` over `.getElementsByClassName()` and `.getElementsByTagName()` and `.getElementsByName()`.
3963
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/prefer-query-selector.md
3974
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/prefer-query-selector.md
3964
3975
  */
3965
3976
  'unicorn/prefer-query-selector'?: Linter.RuleEntry<[]>
3966
3977
  /**
3967
3978
  * Prefer `Reflect.apply()` over `Function#apply()`.
3968
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/prefer-reflect-apply.md
3979
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/prefer-reflect-apply.md
3969
3980
  */
3970
3981
  'unicorn/prefer-reflect-apply'?: Linter.RuleEntry<[]>
3971
3982
  /**
3972
3983
  * Prefer `RegExp#test()` over `String#match()` and `RegExp#exec()`.
3973
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/prefer-regexp-test.md
3984
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/prefer-regexp-test.md
3974
3985
  */
3975
3986
  'unicorn/prefer-regexp-test'?: Linter.RuleEntry<[]>
3976
3987
  /**
3977
3988
  * Prefer `Set#has()` over `Array#includes()` when checking for existence or non-existence.
3978
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/prefer-set-has.md
3989
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/prefer-set-has.md
3979
3990
  */
3980
3991
  'unicorn/prefer-set-has'?: Linter.RuleEntry<[]>
3981
3992
  /**
3982
3993
  * Prefer using `Set#size` instead of `Array#length`.
3983
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/prefer-set-size.md
3994
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/prefer-set-size.md
3984
3995
  */
3985
3996
  'unicorn/prefer-set-size'?: Linter.RuleEntry<[]>
3986
3997
  /**
3987
3998
  * Prefer the spread operator over `Array.from(…)`, `Array#concat(…)`, `Array#{slice,toSpliced}()` and `String#split('')`.
3988
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/prefer-spread.md
3999
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/prefer-spread.md
3989
4000
  */
3990
4001
  'unicorn/prefer-spread'?: Linter.RuleEntry<[]>
3991
4002
  /**
3992
4003
  * Prefer using the `String.raw` tag to avoid escaping `\`.
3993
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/prefer-string-raw.md
4004
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/prefer-string-raw.md
3994
4005
  */
3995
4006
  'unicorn/prefer-string-raw'?: Linter.RuleEntry<[]>
3996
4007
  /**
3997
4008
  * Prefer `String#replaceAll()` over regex searches with the global flag.
3998
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/prefer-string-replace-all.md
4009
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/prefer-string-replace-all.md
3999
4010
  */
4000
4011
  'unicorn/prefer-string-replace-all'?: Linter.RuleEntry<[]>
4001
4012
  /**
4002
4013
  * Prefer `String#slice()` over `String#substr()` and `String#substring()`.
4003
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/prefer-string-slice.md
4014
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/prefer-string-slice.md
4004
4015
  */
4005
4016
  'unicorn/prefer-string-slice'?: Linter.RuleEntry<[]>
4006
4017
  /**
4007
4018
  * Prefer `String#startsWith()` & `String#endsWith()` over `RegExp#test()`.
4008
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/prefer-string-starts-ends-with.md
4019
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/prefer-string-starts-ends-with.md
4009
4020
  */
4010
4021
  'unicorn/prefer-string-starts-ends-with'?: Linter.RuleEntry<[]>
4011
4022
  /**
4012
4023
  * Prefer `String#trimStart()` / `String#trimEnd()` over `String#trimLeft()` / `String#trimRight()`.
4013
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/prefer-string-trim-start-end.md
4024
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/prefer-string-trim-start-end.md
4014
4025
  */
4015
4026
  'unicorn/prefer-string-trim-start-end'?: Linter.RuleEntry<[]>
4016
4027
  /**
4017
4028
  * Prefer using `structuredClone` to create a deep clone.
4018
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/prefer-structured-clone.md
4029
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/prefer-structured-clone.md
4019
4030
  */
4020
4031
  'unicorn/prefer-structured-clone'?: Linter.RuleEntry<UnicornPreferStructuredClone>
4021
4032
  /**
4022
4033
  * Prefer `switch` over multiple `else-if`.
4023
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/prefer-switch.md
4034
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/prefer-switch.md
4024
4035
  */
4025
4036
  'unicorn/prefer-switch'?: Linter.RuleEntry<UnicornPreferSwitch>
4026
4037
  /**
4027
4038
  * Prefer ternary expressions over simple `if-else` statements.
4028
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/prefer-ternary.md
4039
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/prefer-ternary.md
4029
4040
  */
4030
4041
  'unicorn/prefer-ternary'?: Linter.RuleEntry<UnicornPreferTernary>
4031
4042
  /**
4032
4043
  * Prefer top-level await over top-level promises and async function calls.
4033
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/prefer-top-level-await.md
4044
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/prefer-top-level-await.md
4034
4045
  */
4035
4046
  'unicorn/prefer-top-level-await'?: Linter.RuleEntry<[]>
4036
4047
  /**
4037
4048
  * Enforce throwing `TypeError` in type checking conditions.
4038
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/prefer-type-error.md
4049
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/prefer-type-error.md
4039
4050
  */
4040
4051
  'unicorn/prefer-type-error'?: Linter.RuleEntry<[]>
4041
4052
  /**
4042
4053
  * Prevent abbreviations.
4043
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/prevent-abbreviations.md
4054
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/prevent-abbreviations.md
4044
4055
  */
4045
4056
  'unicorn/prevent-abbreviations'?: Linter.RuleEntry<UnicornPreventAbbreviations>
4046
4057
  /**
4047
4058
  * Enforce consistent relative URL style.
4048
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/relative-url-style.md
4059
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/relative-url-style.md
4049
4060
  */
4050
4061
  'unicorn/relative-url-style'?: Linter.RuleEntry<UnicornRelativeUrlStyle>
4051
4062
  /**
4052
4063
  * Enforce using the separator argument with `Array#join()`.
4053
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/require-array-join-separator.md
4064
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/require-array-join-separator.md
4054
4065
  */
4055
4066
  'unicorn/require-array-join-separator'?: Linter.RuleEntry<[]>
4056
4067
  /**
4057
4068
  * Enforce using the digits argument with `Number#toFixed()`.
4058
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/require-number-to-fixed-digits-argument.md
4069
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/require-number-to-fixed-digits-argument.md
4059
4070
  */
4060
4071
  'unicorn/require-number-to-fixed-digits-argument'?: Linter.RuleEntry<[]>
4061
4072
  /**
4062
4073
  * Enforce using the `targetOrigin` argument with `window.postMessage()`.
4063
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/require-post-message-target-origin.md
4074
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/require-post-message-target-origin.md
4064
4075
  */
4065
4076
  'unicorn/require-post-message-target-origin'?: Linter.RuleEntry<[]>
4066
4077
  /**
4067
4078
  * Enforce better string content.
4068
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/string-content.md
4079
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/string-content.md
4069
4080
  */
4070
4081
  'unicorn/string-content'?: Linter.RuleEntry<UnicornStringContent>
4071
4082
  /**
4072
4083
  * Enforce consistent brace style for `case` clauses.
4073
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/switch-case-braces.md
4084
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/switch-case-braces.md
4074
4085
  */
4075
4086
  'unicorn/switch-case-braces'?: Linter.RuleEntry<UnicornSwitchCaseBraces>
4076
4087
  /**
4077
4088
  * Fix whitespace-insensitive template indentation.
4078
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/template-indent.md
4089
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/template-indent.md
4079
4090
  */
4080
4091
  'unicorn/template-indent'?: Linter.RuleEntry<UnicornTemplateIndent>
4081
4092
  /**
4082
4093
  * Enforce consistent case for text encoding identifiers.
4083
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/text-encoding-identifier-case.md
4094
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/text-encoding-identifier-case.md
4084
4095
  */
4085
4096
  'unicorn/text-encoding-identifier-case'?: Linter.RuleEntry<[]>
4086
4097
  /**
4087
4098
  * Require `new` when creating an error.
4088
- * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/throw-new-error.md
4099
+ * @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v58.0.0/docs/rules/throw-new-error.md
4089
4100
  */
4090
4101
  'unicorn/throw-new-error'?: Linter.RuleEntry<[]>
4091
4102
  /**
@@ -7461,7 +7472,7 @@ type NNoUnsupportedFeaturesEsSyntax = []|[{
7461
7472
  type NNoUnsupportedFeaturesNodeBuiltins = []|[{
7462
7473
  version?: string
7463
7474
  allowExperimental?: boolean
7464
- ignores?: ("__filename" | "__dirname" | "require" | "require.cache" | "require.extensions" | "require.main" | "require.resolve" | "require.resolve.paths" | "module" | "module.children" | "module.exports" | "module.filename" | "module.id" | "module.isPreloading" | "module.loaded" | "module.parent" | "module.path" | "module.paths" | "module.require" | "exports" | "AbortController" | "AbortSignal" | "AbortSignal.abort" | "AbortSignal.timeout" | "AbortSignal.any" | "DOMException" | "FormData" | "Headers" | "MessageEvent" | "Navigator" | "Request" | "Response" | "WebAssembly" | "WebSocket" | "fetch" | "global" | "queueMicrotask" | "navigator" | "navigator.hardwareConcurrency" | "navigator.language" | "navigator.languages" | "navigator.platform" | "navigator.userAgent" | "structuredClone" | "localStorage" | "sessionStorage" | "Storage" | "Blob" | "new Buffer()" | "Buffer" | "Buffer.alloc" | "Buffer.allocUnsafe" | "Buffer.allocUnsafeSlow" | "Buffer.byteLength" | "Buffer.compare" | "Buffer.concat" | "Buffer.copyBytesFrom" | "Buffer.from" | "Buffer.isBuffer" | "Buffer.isEncoding" | "File" | "atob" | "btoa" | "console" | "console.profile" | "console.profileEnd" | "console.timeStamp" | "console.Console" | "console.assert" | "console.clear" | "console.count" | "console.countReset" | "console.debug" | "console.dir" | "console.dirxml" | "console.error" | "console.group" | "console.groupCollapsed" | "console.groupEnd" | "console.info" | "console.log" | "console.table" | "console.time" | "console.timeEnd" | "console.timeLog" | "console.trace" | "console.warn" | "crypto" | "crypto.subtle" | "crypto.subtle.decrypt" | "crypto.subtle.deriveBits" | "crypto.subtle.deriveKey" | "crypto.subtle.digest" | "crypto.subtle.encrypt" | "crypto.subtle.exportKey" | "crypto.subtle.generateKey" | "crypto.subtle.importKey" | "crypto.subtle.sign" | "crypto.subtle.unwrapKey" | "crypto.subtle.verify" | "crypto.subtle.wrapKey" | "crypto.getRandomValues" | "crypto.randomUUID" | "Crypto" | "CryptoKey" | "SubtleCrypto" | "CloseEvent" | "CustomEvent" | "Event" | "EventSource" | "EventTarget" | "PerformanceEntry" | "PerformanceMark" | "PerformanceMeasure" | "PerformanceObserver" | "PerformanceObserverEntryList" | "PerformanceResourceTiming" | "performance" | "performance.clearMarks" | "performance.clearMeasures" | "performance.clearResourceTimings" | "performance.eventLoopUtilization" | "performance.getEntries" | "performance.getEntriesByName" | "performance.getEntriesByType" | "performance.mark" | "performance.markResourceTiming" | "performance.measure" | "performance.nodeTiming" | "performance.nodeTiming.bootstrapComplete" | "performance.nodeTiming.environment" | "performance.nodeTiming.idleTime" | "performance.nodeTiming.loopExit" | "performance.nodeTiming.loopStart" | "performance.nodeTiming.nodeStart" | "performance.nodeTiming.uvMetricsInfo" | "performance.nodeTiming.v8Start" | "performance.now" | "performance.onresourcetimingbufferfull" | "performance.setResourceTimingBufferSize" | "performance.timeOrigin" | "performance.timerify" | "performance.toJSON" | "process" | "process.allowedNodeEnvironmentFlags" | "process.availableMemory" | "process.arch" | "process.argv" | "process.argv0" | "process.channel" | "process.config" | "process.connected" | "process.debugPort" | "process.env" | "process.execArgv" | "process.execPath" | "process.exitCode" | "process.features.cached_builtins" | "process.features.debug" | "process.features.inspector" | "process.features.ipv6" | "process.features.require_module" | "process.features.tls" | "process.features.tls_alpn" | "process.features.tls_ocsp" | "process.features.tls_sni" | "process.features.typescript" | "process.features.uv" | "process.finalization.register" | "process.finalization.registerBeforeExit" | "process.finalization.unregister" | "process.getBuiltinModule" | "process.mainModule" | "process.noDeprecation" | "process.permission" | "process.pid" | "process.platform" | "process.ppid" | "process.release" | "process.report" | "process.report.excludeEnv" | "process.sourceMapsEnabled" | "process.stdin" | "process.stdin.isRaw" | "process.stdin.isTTY" | "process.stdin.setRawMode" | "process.stdout" | "process.stdout.clearLine" | "process.stdout.clearScreenDown" | "process.stdout.columns" | "process.stdout.cursorTo" | "process.stdout.getColorDepth" | "process.stdout.getWindowSize" | "process.stdout.hasColors" | "process.stdout.isTTY" | "process.stdout.moveCursor" | "process.stdout.rows" | "process.stderr" | "process.stderr.clearLine" | "process.stderr.clearScreenDown" | "process.stderr.columns" | "process.stderr.cursorTo" | "process.stderr.getColorDepth" | "process.stderr.getWindowSize" | "process.stderr.hasColors" | "process.stderr.isTTY" | "process.stderr.moveCursor" | "process.stderr.rows" | "process.throwDeprecation" | "process.title" | "process.traceDeprecation" | "process.version" | "process.versions" | "process.abort" | "process.chdir" | "process.constrainedMemory" | "process.cpuUsage" | "process.cwd" | "process.disconnect" | "process.dlopen" | "process.emitWarning" | "process.exit" | "process.getActiveResourcesInfo" | "process.getegid" | "process.geteuid" | "process.getgid" | "process.getgroups" | "process.getuid" | "process.hasUncaughtExceptionCaptureCallback" | "process.hrtime" | "process.hrtime.bigint" | "process.initgroups" | "process.kill" | "process.loadEnvFile" | "process.memoryUsage" | "process.rss" | "process.nextTick" | "process.resourceUsage" | "process.send" | "process.setegid" | "process.seteuid" | "process.setgid" | "process.setgroups" | "process.setuid" | "process.setSourceMapsEnabled" | "process.setUncaughtExceptionCaptureCallback" | "process.umask" | "process.uptime" | "ReadableStream" | "ReadableStream.from" | "ReadableStreamDefaultReader" | "ReadableStreamBYOBReader" | "ReadableStreamDefaultController" | "ReadableByteStreamController" | "ReadableStreamBYOBRequest" | "WritableStream" | "WritableStreamDefaultWriter" | "WritableStreamDefaultController" | "TransformStream" | "TransformStreamDefaultController" | "ByteLengthQueuingStrategy" | "CountQueuingStrategy" | "TextEncoderStream" | "TextDecoderStream" | "CompressionStream" | "DecompressionStream" | "setInterval" | "clearInterval" | "setTimeout" | "clearTimeout" | "setImmediate" | "clearImmediate" | "URL" | "URL.canParse" | "URL.createObjectURL" | "URL.revokeObjectURL" | "URLSearchParams" | "TextDecoder" | "TextEncoder" | "BroadcastChannel" | "MessageChannel" | "MessagePort" | "assert" | "assert.assert" | "assert.deepEqual" | "assert.deepStrictEqual" | "assert.doesNotMatch" | "assert.doesNotReject" | "assert.doesNotThrow" | "assert.equal" | "assert.fail" | "assert.ifError" | "assert.match" | "assert.notDeepEqual" | "assert.notDeepStrictEqual" | "assert.notEqual" | "assert.notStrictEqual" | "assert.ok" | "assert.rejects" | "assert.strictEqual" | "assert.throws" | "assert.CallTracker" | "assert.strict" | "assert.strict.assert" | "assert.strict.deepEqual" | "assert.strict.deepStrictEqual" | "assert.strict.doesNotMatch" | "assert.strict.doesNotReject" | "assert.strict.doesNotThrow" | "assert.strict.equal" | "assert.strict.fail" | "assert.strict.ifError" | "assert.strict.match" | "assert.strict.notDeepEqual" | "assert.strict.notDeepStrictEqual" | "assert.strict.notEqual" | "assert.strict.notStrictEqual" | "assert.strict.ok" | "assert.strict.rejects" | "assert.strict.strictEqual" | "assert.strict.throws" | "assert.strict.CallTracker" | "assert/strict" | "assert/strict.assert" | "assert/strict.deepEqual" | "assert/strict.deepStrictEqual" | "assert/strict.doesNotMatch" | "assert/strict.doesNotReject" | "assert/strict.doesNotThrow" | "assert/strict.equal" | "assert/strict.fail" | "assert/strict.ifError" | "assert/strict.match" | "assert/strict.notDeepEqual" | "assert/strict.notDeepStrictEqual" | "assert/strict.notEqual" | "assert/strict.notStrictEqual" | "assert/strict.ok" | "assert/strict.rejects" | "assert/strict.strictEqual" | "assert/strict.throws" | "assert/strict.CallTracker" | "async_hooks" | "async_hooks.createHook" | "async_hooks.executionAsyncResource" | "async_hooks.executionAsyncId" | "async_hooks.triggerAsyncId" | "async_hooks.AsyncLocalStorage" | "async_hooks.AsyncLocalStorage.bind" | "async_hooks.AsyncLocalStorage.snapshot" | "async_hooks.AsyncResource" | "async_hooks.AsyncResource.bind" | "buffer" | "buffer.constants" | "buffer.INSPECT_MAX_BYTES" | "buffer.kMaxLength" | "buffer.kStringMaxLength" | "buffer.atob" | "buffer.btoa" | "buffer.isAscii" | "buffer.isUtf8" | "buffer.resolveObjectURL" | "buffer.transcode" | "buffer.SlowBuffer" | "buffer.Blob" | "new buffer.Buffer()" | "buffer.Buffer" | "buffer.Buffer.alloc" | "buffer.Buffer.allocUnsafe" | "buffer.Buffer.allocUnsafeSlow" | "buffer.Buffer.byteLength" | "buffer.Buffer.compare" | "buffer.Buffer.concat" | "buffer.Buffer.copyBytesFrom" | "buffer.Buffer.from" | "buffer.Buffer.isBuffer" | "buffer.Buffer.isEncoding" | "buffer.File" | "child_process" | "child_process.exec" | "child_process.execFile" | "child_process.fork" | "child_process.spawn" | "child_process.execFileSync" | "child_process.execSync" | "child_process.spawnSync" | "child_process.ChildProcess" | "cluster" | "cluster.isMaster" | "cluster.isPrimary" | "cluster.isWorker" | "cluster.schedulingPolicy" | "cluster.settings" | "cluster.worker" | "cluster.workers" | "cluster.disconnect" | "cluster.fork" | "cluster.setupMaster" | "cluster.setupPrimary" | "cluster.Worker" | "crypto.constants" | "crypto.fips" | "crypto.webcrypto" | "crypto.webcrypto.subtle" | "crypto.webcrypto.subtle.decrypt" | "crypto.webcrypto.subtle.deriveBits" | "crypto.webcrypto.subtle.deriveKey" | "crypto.webcrypto.subtle.digest" | "crypto.webcrypto.subtle.encrypt" | "crypto.webcrypto.subtle.exportKey" | "crypto.webcrypto.subtle.generateKey" | "crypto.webcrypto.subtle.importKey" | "crypto.webcrypto.subtle.sign" | "crypto.webcrypto.subtle.unwrapKey" | "crypto.webcrypto.subtle.verify" | "crypto.webcrypto.subtle.wrapKey" | "crypto.webcrypto.getRandomValues" | "crypto.webcrypto.randomUUID" | "crypto.checkPrime" | "crypto.checkPrimeSync" | "crypto.createCipher" | "crypto.createCipheriv" | "crypto.createDecipher" | "crypto.createDecipheriv" | "crypto.createDiffieHellman" | "crypto.createDiffieHellmanGroup" | "crypto.createECDH" | "crypto.createHash" | "crypto.createHmac" | "crypto.createPrivateKey" | "crypto.createPublicKey" | "crypto.createSecretKey" | "crypto.createSign" | "crypto.createVerify" | "crypto.diffieHellman" | "crypto.generateKey" | "crypto.generateKeyPair" | "crypto.generateKeyPairSync" | "crypto.generateKeySync" | "crypto.generatePrime" | "crypto.generatePrimeSync" | "crypto.getCipherInfo" | "crypto.getCiphers" | "crypto.getCurves" | "crypto.getDiffieHellman" | "crypto.getFips" | "crypto.getHashes" | "crypto.hash" | "crypto.hkdf" | "crypto.hkdfSync" | "crypto.pbkdf2" | "crypto.pbkdf2Sync" | "crypto.privateDecrypt" | "crypto.privateEncrypt" | "crypto.publicDecrypt" | "crypto.publicEncrypt" | "crypto.randomBytes" | "crypto.randomFillSync" | "crypto.randomFill" | "crypto.randomInt" | "crypto.scrypt" | "crypto.scryptSync" | "crypto.secureHeapUsed" | "crypto.setEngine" | "crypto.setFips" | "crypto.sign" | "crypto.timingSafeEqual" | "crypto.verify" | "crypto.Certificate" | "crypto.Certificate.exportChallenge" | "crypto.Certificate.exportPublicKey" | "crypto.Certificate.verifySpkac" | "crypto.Cipher" | "crypto.Decipher" | "crypto.DiffieHellman" | "crypto.DiffieHellmanGroup" | "crypto.ECDH" | "crypto.ECDH.convertKey" | "crypto.Hash()" | "new crypto.Hash()" | "crypto.Hash" | "crypto.Hmac()" | "new crypto.Hmac()" | "crypto.Hmac" | "crypto.KeyObject" | "crypto.KeyObject.from" | "crypto.Sign" | "crypto.Verify" | "crypto.X509Certificate" | "dgram" | "dgram.createSocket" | "dgram.Socket" | "diagnostics_channel" | "diagnostics_channel.hasSubscribers" | "diagnostics_channel.channel" | "diagnostics_channel.subscribe" | "diagnostics_channel.unsubscribe" | "diagnostics_channel.tracingChannel" | "diagnostics_channel.Channel" | "diagnostics_channel.TracingChannel" | "dns" | "dns.Resolver" | "dns.getServers" | "dns.lookup" | "dns.lookupService" | "dns.resolve" | "dns.resolve4" | "dns.resolve6" | "dns.resolveAny" | "dns.resolveCname" | "dns.resolveCaa" | "dns.resolveMx" | "dns.resolveNaptr" | "dns.resolveNs" | "dns.resolvePtr" | "dns.resolveSoa" | "dns.resolveSrv" | "dns.resolveTxt" | "dns.reverse" | "dns.setDefaultResultOrder" | "dns.getDefaultResultOrder" | "dns.setServers" | "dns.promises" | "dns.promises.Resolver" | "dns.promises.cancel" | "dns.promises.getServers" | "dns.promises.lookup" | "dns.promises.lookupService" | "dns.promises.resolve" | "dns.promises.resolve4" | "dns.promises.resolve6" | "dns.promises.resolveAny" | "dns.promises.resolveCaa" | "dns.promises.resolveCname" | "dns.promises.resolveMx" | "dns.promises.resolveNaptr" | "dns.promises.resolveNs" | "dns.promises.resolvePtr" | "dns.promises.resolveSoa" | "dns.promises.resolveSrv" | "dns.promises.resolveTxt" | "dns.promises.reverse" | "dns.promises.setDefaultResultOrder" | "dns.promises.getDefaultResultOrder" | "dns.promises.setServers" | "dns/promises" | "dns/promises.Resolver" | "dns/promises.cancel" | "dns/promises.getServers" | "dns/promises.lookup" | "dns/promises.lookupService" | "dns/promises.resolve" | "dns/promises.resolve4" | "dns/promises.resolve6" | "dns/promises.resolveAny" | "dns/promises.resolveCaa" | "dns/promises.resolveCname" | "dns/promises.resolveMx" | "dns/promises.resolveNaptr" | "dns/promises.resolveNs" | "dns/promises.resolvePtr" | "dns/promises.resolveSoa" | "dns/promises.resolveSrv" | "dns/promises.resolveTxt" | "dns/promises.reverse" | "dns/promises.setDefaultResultOrder" | "dns/promises.getDefaultResultOrder" | "dns/promises.setServers" | "domain" | "domain.create" | "domain.Domain" | "events" | "events.Event" | "events.EventTarget" | "events.CustomEvent" | "events.NodeEventTarget" | "events.EventEmitter" | "events.EventEmitter.defaultMaxListeners" | "events.EventEmitter.errorMonitor" | "events.EventEmitter.captureRejections" | "events.EventEmitter.captureRejectionSymbol" | "events.EventEmitter.getEventListeners" | "events.EventEmitter.getMaxListeners" | "events.EventEmitter.once" | "events.EventEmitter.listenerCount" | "events.EventEmitter.on" | "events.EventEmitter.setMaxListeners" | "events.EventEmitter.addAbortListener" | "events.EventEmitterAsyncResource" | "events.EventEmitterAsyncResource.defaultMaxListeners" | "events.EventEmitterAsyncResource.errorMonitor" | "events.EventEmitterAsyncResource.captureRejections" | "events.EventEmitterAsyncResource.captureRejectionSymbol" | "events.EventEmitterAsyncResource.getEventListeners" | "events.EventEmitterAsyncResource.getMaxListeners" | "events.EventEmitterAsyncResource.once" | "events.EventEmitterAsyncResource.listenerCount" | "events.EventEmitterAsyncResource.on" | "events.EventEmitterAsyncResource.setMaxListeners" | "events.EventEmitterAsyncResource.addAbortListener" | "events.defaultMaxListeners" | "events.errorMonitor" | "events.captureRejections" | "events.captureRejectionSymbol" | "events.getEventListeners" | "events.getMaxListeners" | "events.once" | "events.listenerCount" | "events.on" | "events.setMaxListeners" | "events.addAbortListener" | "fs" | "fs.promises" | "fs.promises.FileHandle" | "fs.promises.access" | "fs.promises.appendFile" | "fs.promises.chmod" | "fs.promises.chown" | "fs.promises.constants" | "fs.promises.copyFile" | "fs.promises.cp" | "fs.promises.glob" | "fs.promises.lchmod" | "fs.promises.lchown" | "fs.promises.link" | "fs.promises.lstat" | "fs.promises.lutimes" | "fs.promises.mkdir" | "fs.promises.mkdtemp" | "fs.promises.open" | "fs.promises.opendir" | "fs.promises.readFile" | "fs.promises.readdir" | "fs.promises.readlink" | "fs.promises.realpath" | "fs.promises.rename" | "fs.promises.rm" | "fs.promises.rmdir" | "fs.promises.stat" | "fs.promises.statfs" | "fs.promises.symlink" | "fs.promises.truncate" | "fs.promises.unlink" | "fs.promises.utimes" | "fs.promises.watch" | "fs.promises.writeFile" | "fs.access" | "fs.appendFile" | "fs.chmod" | "fs.chown" | "fs.close" | "fs.copyFile" | "fs.cp" | "fs.createReadStream" | "fs.createWriteStream" | "fs.exists" | "fs.fchmod" | "fs.fchown" | "fs.fdatasync" | "fs.fstat" | "fs.fsync" | "fs.ftruncate" | "fs.futimes" | "fs.glob" | "fs.lchmod" | "fs.lchown" | "fs.link" | "fs.lstat" | "fs.lutimes" | "fs.mkdir" | "fs.mkdtemp" | "fs.native" | "fs.open" | "fs.openAsBlob" | "fs.opendir" | "fs.read" | "fs.readdir" | "fs.readFile" | "fs.readlink" | "fs.readv" | "fs.realpath" | "fs.realpath.native" | "fs.rename" | "fs.rm" | "fs.rmdir" | "fs.stat" | "fs.statfs" | "fs.symlink" | "fs.truncate" | "fs.unlink" | "fs.unwatchFile" | "fs.utimes" | "fs.watch" | "fs.watchFile" | "fs.write" | "fs.writeFile" | "fs.writev" | "fs.accessSync" | "fs.appendFileSync" | "fs.chmodSync" | "fs.chownSync" | "fs.closeSync" | "fs.copyFileSync" | "fs.cpSync" | "fs.existsSync" | "fs.fchmodSync" | "fs.fchownSync" | "fs.fdatasyncSync" | "fs.fstatSync" | "fs.fsyncSync" | "fs.ftruncateSync" | "fs.futimesSync" | "fs.globSync" | "fs.lchmodSync" | "fs.lchownSync" | "fs.linkSync" | "fs.lstatSync" | "fs.lutimesSync" | "fs.mkdirSync" | "fs.mkdtempSync" | "fs.opendirSync" | "fs.openSync" | "fs.readdirSync" | "fs.readFileSync" | "fs.readlinkSync" | "fs.readSync" | "fs.readvSync" | "fs.realpathSync" | "fs.realpathSync.native" | "fs.renameSync" | "fs.rmdirSync" | "fs.rmSync" | "fs.statfsSync" | "fs.statSync" | "fs.symlinkSync" | "fs.truncateSync" | "fs.unlinkSync" | "fs.utimesSync" | "fs.writeFileSync" | "fs.writeSync" | "fs.writevSync" | "fs.constants" | "fs.Dir" | "fs.Dirent" | "fs.FSWatcher" | "fs.StatWatcher" | "fs.ReadStream" | "fs.Stats()" | "new fs.Stats()" | "fs.Stats" | "fs.StatFs" | "fs.WriteStream" | "fs.common_objects" | "fs/promises" | "fs/promises.FileHandle" | "fs/promises.access" | "fs/promises.appendFile" | "fs/promises.chmod" | "fs/promises.chown" | "fs/promises.constants" | "fs/promises.copyFile" | "fs/promises.cp" | "fs/promises.glob" | "fs/promises.lchmod" | "fs/promises.lchown" | "fs/promises.link" | "fs/promises.lstat" | "fs/promises.lutimes" | "fs/promises.mkdir" | "fs/promises.mkdtemp" | "fs/promises.open" | "fs/promises.opendir" | "fs/promises.readFile" | "fs/promises.readdir" | "fs/promises.readlink" | "fs/promises.realpath" | "fs/promises.rename" | "fs/promises.rm" | "fs/promises.rmdir" | "fs/promises.stat" | "fs/promises.statfs" | "fs/promises.symlink" | "fs/promises.truncate" | "fs/promises.unlink" | "fs/promises.utimes" | "fs/promises.watch" | "fs/promises.writeFile" | "http2" | "http2.constants" | "http2.sensitiveHeaders" | "http2.createServer" | "http2.createSecureServer" | "http2.connect" | "http2.getDefaultSettings" | "http2.getPackedSettings" | "http2.getUnpackedSettings" | "http2.performServerHandshake" | "http2.Http2Session" | "http2.ServerHttp2Session" | "http2.ClientHttp2Session" | "http2.Http2Stream" | "http2.ClientHttp2Stream" | "http2.ServerHttp2Stream" | "http2.Http2Server" | "http2.Http2SecureServer" | "http2.Http2ServerRequest" | "http2.Http2ServerResponse" | "http" | "http.globalAgent" | "http.createServer" | "http.get" | "http.request" | "http.Agent" | "http.Server" | "inspector" | "inspector.Session" | "inspector.Network.loadingFailed" | "inspector.Network.loadingFinished" | "inspector.Network.requestWillBeSent" | "inspector.Network.responseReceived" | "inspector.console" | "inspector.close" | "inspector.open" | "inspector.url" | "inspector.waitForDebugger" | "inspector/promises" | "inspector/promises.Session" | "inspector/promises.Network.loadingFailed" | "inspector/promises.Network.loadingFinished" | "inspector/promises.Network.requestWillBeSent" | "inspector/promises.Network.responseReceived" | "inspector/promises.console" | "inspector/promises.close" | "inspector/promises.open" | "inspector/promises.url" | "inspector/promises.waitForDebugger" | "module.builtinModules" | "module.constants.compileCacheStatus" | "module.createRequire" | "module.createRequireFromPath" | "module.enableCompileCache" | "module.findPackageJSON" | "module.flushCompileCache" | "module.getCompileCacheDir" | "module.isBuiltin" | "module.register" | "module.stripTypeScriptTypes" | "module.syncBuiltinESMExports" | "module.findSourceMap" | "module.SourceMap" | "module.Module.builtinModules" | "module.Module.createRequire" | "module.Module.createRequireFromPath" | "module.Module.enableCompileCache" | "module.Module.findPackageJSON" | "module.Module.flushCompileCache" | "module.Module.getCompileCacheDir" | "module.Module.isBuiltin" | "module.Module.register" | "module.Module.stripTypeScriptTypes" | "module.Module.syncBuiltinESMExports" | "module.Module.findSourceMap" | "module.Module.SourceMap" | "net" | "net.connect" | "net.createConnection" | "net.createServer" | "net.getDefaultAutoSelectFamily" | "net.setDefaultAutoSelectFamily" | "net.getDefaultAutoSelectFamilyAttemptTimeout" | "net.setDefaultAutoSelectFamilyAttemptTimeout" | "net.isIP" | "net.isIPv4" | "net.isIPv6" | "net.BlockList" | "net.SocketAddress" | "net.Server" | "net.Socket" | "os" | "os.EOL" | "os.constants" | "os.constants.priority" | "os.devNull" | "os.availableParallelism" | "os.arch" | "os.cpus" | "os.endianness" | "os.freemem" | "os.getPriority" | "os.homedir" | "os.hostname" | "os.loadavg" | "os.machine" | "os.networkInterfaces" | "os.platform" | "os.release" | "os.setPriority" | "os.tmpdir" | "os.totalmem" | "os.type" | "os.uptime" | "os.userInfo" | "os.version" | "path" | "path.posix" | "path.posix.delimiter" | "path.posix.sep" | "path.posix.basename" | "path.posix.dirname" | "path.posix.extname" | "path.posix.format" | "path.posix.matchesGlob" | "path.posix.isAbsolute" | "path.posix.join" | "path.posix.normalize" | "path.posix.parse" | "path.posix.relative" | "path.posix.resolve" | "path.posix.toNamespacedPath" | "path.win32" | "path.win32.delimiter" | "path.win32.sep" | "path.win32.basename" | "path.win32.dirname" | "path.win32.extname" | "path.win32.format" | "path.win32.matchesGlob" | "path.win32.isAbsolute" | "path.win32.join" | "path.win32.normalize" | "path.win32.parse" | "path.win32.relative" | "path.win32.resolve" | "path.win32.toNamespacedPath" | "path.delimiter" | "path.sep" | "path.basename" | "path.dirname" | "path.extname" | "path.format" | "path.matchesGlob" | "path.isAbsolute" | "path.join" | "path.normalize" | "path.parse" | "path.relative" | "path.resolve" | "path.toNamespacedPath" | "path/posix" | "path/posix.delimiter" | "path/posix.sep" | "path/posix.basename" | "path/posix.dirname" | "path/posix.extname" | "path/posix.format" | "path/posix.matchesGlob" | "path/posix.isAbsolute" | "path/posix.join" | "path/posix.normalize" | "path/posix.parse" | "path/posix.relative" | "path/posix.resolve" | "path/posix.toNamespacedPath" | "path/win32" | "path/win32.delimiter" | "path/win32.sep" | "path/win32.basename" | "path/win32.dirname" | "path/win32.extname" | "path/win32.format" | "path/win32.matchesGlob" | "path/win32.isAbsolute" | "path/win32.join" | "path/win32.normalize" | "path/win32.parse" | "path/win32.relative" | "path/win32.resolve" | "path/win32.toNamespacedPath" | "perf_hooks" | "perf_hooks.performance" | "perf_hooks.performance.clearMarks" | "perf_hooks.performance.clearMeasures" | "perf_hooks.performance.clearResourceTimings" | "perf_hooks.performance.eventLoopUtilization" | "perf_hooks.performance.getEntries" | "perf_hooks.performance.getEntriesByName" | "perf_hooks.performance.getEntriesByType" | "perf_hooks.performance.mark" | "perf_hooks.performance.markResourceTiming" | "perf_hooks.performance.measure" | "perf_hooks.performance.nodeTiming" | "perf_hooks.performance.nodeTiming.bootstrapComplete" | "perf_hooks.performance.nodeTiming.environment" | "perf_hooks.performance.nodeTiming.idleTime" | "perf_hooks.performance.nodeTiming.loopExit" | "perf_hooks.performance.nodeTiming.loopStart" | "perf_hooks.performance.nodeTiming.nodeStart" | "perf_hooks.performance.nodeTiming.uvMetricsInfo" | "perf_hooks.performance.nodeTiming.v8Start" | "perf_hooks.performance.now" | "perf_hooks.performance.onresourcetimingbufferfull" | "perf_hooks.performance.setResourceTimingBufferSize" | "perf_hooks.performance.timeOrigin" | "perf_hooks.performance.timerify" | "perf_hooks.performance.toJSON" | "perf_hooks.createHistogram" | "perf_hooks.monitorEventLoopDelay" | "perf_hooks.PerformanceEntry" | "perf_hooks.PerformanceMark" | "perf_hooks.PerformanceMeasure" | "perf_hooks.PerformanceNodeEntry" | "perf_hooks.PerformanceNodeTiming" | "perf_hooks.PerformanceResourceTiming" | "perf_hooks.PerformanceObserver" | "perf_hooks.PerformanceObserverEntryList" | "perf_hooks.Histogram" | "perf_hooks.IntervalHistogram" | "perf_hooks.RecordableHistogram" | "punycode" | "punycode.ucs2" | "punycode.version" | "punycode.decode" | "punycode.encode" | "punycode.toASCII" | "punycode.toUnicode" | "querystring" | "querystring.decode" | "querystring.encode" | "querystring.escape" | "querystring.parse" | "querystring.stringify" | "querystring.unescape" | "readline" | "readline.promises" | "readline.promises.createInterface" | "readline.promises.Interface" | "readline.promises.Readline" | "readline.clearLine" | "readline.clearScreenDown" | "readline.createInterface" | "readline.cursorTo" | "readline.moveCursor" | "readline.Interface" | "readline.emitKeypressEvents" | "readline.InterfaceConstructor" | "readline/promises" | "readline/promises.createInterface" | "readline/promises.Interface" | "readline/promises.Readline" | "repl" | "repl.start" | "repl.writer" | "repl.REPLServer()" | "repl.REPLServer" | "repl.REPL_MODE_MAGIC" | "repl.REPL_MODE_SLOPPY" | "repl.REPL_MODE_STRICT" | "repl.Recoverable()" | "repl.Recoverable" | "repl.builtinModules" | "sea" | "sea.isSea" | "sea.getAsset" | "sea.getAssetAsBlob" | "sea.getRawAsset" | "sea.sea.isSea" | "sea.sea.getAsset" | "sea.sea.getAssetAsBlob" | "sea.sea.getRawAsset" | "stream" | "stream.promises" | "stream.promises.pipeline" | "stream.promises.finished" | "stream.finished" | "stream.pipeline" | "stream.compose" | "stream.duplexPair" | "stream.Readable" | "stream.Readable.from" | "stream.Readable.isDisturbed" | "stream.Readable.fromWeb" | "stream.Readable.toWeb" | "stream.Writable" | "stream.Writable.fromWeb" | "stream.Writable.toWeb" | "stream.Duplex" | "stream.Duplex.from" | "stream.Duplex.fromWeb" | "stream.Duplex.toWeb" | "stream.Transform" | "stream.isErrored" | "stream.isReadable" | "stream.addAbortSignal" | "stream.getDefaultHighWaterMark" | "stream.setDefaultHighWaterMark" | "stream/promises.pipeline" | "stream/promises.finished" | "stream/web" | "stream/web.ReadableStream" | "stream/web.ReadableStream.from" | "stream/web.ReadableStreamDefaultReader" | "stream/web.ReadableStreamBYOBReader" | "stream/web.ReadableStreamDefaultController" | "stream/web.ReadableByteStreamController" | "stream/web.ReadableStreamBYOBRequest" | "stream/web.WritableStream" | "stream/web.WritableStreamDefaultWriter" | "stream/web.WritableStreamDefaultController" | "stream/web.TransformStream" | "stream/web.TransformStreamDefaultController" | "stream/web.ByteLengthQueuingStrategy" | "stream/web.CountQueuingStrategy" | "stream/web.TextEncoderStream" | "stream/web.TextDecoderStream" | "stream/web.CompressionStream" | "stream/web.DecompressionStream" | "stream/consumers" | "stream/consumers.arrayBuffer" | "stream/consumers.blob" | "stream/consumers.buffer" | "stream/consumers.json" | "stream/consumers.text" | "string_decoder" | "string_decoder.StringDecoder" | "test" | "test.after" | "test.afterEach" | "test.before" | "test.beforeEach" | "test.describe" | "test.describe.only" | "test.describe.skip" | "test.describe.todo" | "test.it" | "test.it.only" | "test.it.skip" | "test.it.todo" | "test.mock" | "test.mock.fn" | "test.mock.getter" | "test.mock.method" | "test.mock.module" | "test.mock.reset" | "test.mock.restoreAll" | "test.mock.setter" | "test.mock.timers" | "test.mock.timers.enable" | "test.mock.timers.reset" | "test.mock.timers.tick" | "test.only" | "test.run" | "test.snapshot" | "test.snapshot.setDefaultSnapshotSerializers" | "test.snapshot.setResolveSnapshotPath" | "test.skip" | "test.suite" | "test.test" | "test.test.only" | "test.test.skip" | "test.test.todo" | "test.todo" | "timers" | "timers.Immediate" | "timers.Timeout" | "timers.setImmediate" | "timers.clearImmediate" | "timers.setInterval" | "timers.clearInterval" | "timers.setTimeout" | "timers.clearTimeout" | "timers.promises" | "timers.promises.setTimeout" | "timers.promises.setImmediate" | "timers.promises.setInterval" | "timers.promises.scheduler.wait" | "timers.promises.scheduler.yield" | "timers/promises" | "timers/promises.setTimeout" | "timers/promises.setImmediate" | "timers/promises.setInterval" | "timers/promises.scheduler.wait" | "timers/promises.scheduler.yield" | "tls" | "tls.rootCertificates" | "tls.DEFAULT_ECDH_CURVE" | "tls.DEFAULT_MAX_VERSION" | "tls.DEFAULT_MIN_VERSION" | "tls.DEFAULT_CIPHERS" | "tls.checkServerIdentity" | "tls.connect" | "tls.createSecureContext" | "tls.createSecurePair" | "tls.createServer" | "tls.getCiphers" | "tls.SecureContext" | "tls.CryptoStream" | "tls.SecurePair" | "tls.Server" | "tls.TLSSocket" | "trace_events" | "trace_events.createTracing" | "trace_events.getEnabledCategories" | "tty" | "tty.isatty" | "tty.ReadStream" | "tty.WriteStream" | "url" | "url.domainToASCII" | "url.domainToUnicode" | "url.fileURLToPath" | "url.format" | "url.pathToFileURL" | "url.urlToHttpOptions" | "url.URL" | "url.URL.canParse" | "url.URL.createObjectURL" | "url.URL.revokeObjectURL" | "url.URLSearchParams" | "url.Url" | "util.promisify" | "util.promisify.custom" | "util.callbackify" | "util.debuglog" | "util.debug" | "util.deprecate" | "util.format" | "util.formatWithOptions" | "util.getCallSite" | "util.getCallSites" | "util.getSystemErrorName" | "util.getSystemErrorMap" | "util.getSystemErrorMessage" | "util.inherits" | "util.inspect" | "util.inspect.custom" | "util.inspect.defaultOptions" | "util.inspect.replDefaults" | "util.isDeepStrictEqual" | "util.parseArgs" | "util.parseEnv" | "util.stripVTControlCharacters" | "util.styleText" | "util.toUSVString" | "util.transferableAbortController" | "util.transferableAbortSignal" | "util.aborted" | "util.MIMEType" | "util.MIMEParams" | "util.TextDecoder" | "util.TextEncoder" | "util.types" | "util.types.isExternal" | "util.types.isDate" | "util.types.isArgumentsObject" | "util.types.isBigIntObject" | "util.types.isBooleanObject" | "util.types.isNumberObject" | "util.types.isStringObject" | "util.types.isSymbolObject" | "util.types.isNativeError" | "util.types.isRegExp" | "util.types.isAsyncFunction" | "util.types.isGeneratorFunction" | "util.types.isGeneratorObject" | "util.types.isPromise" | "util.types.isMap" | "util.types.isSet" | "util.types.isMapIterator" | "util.types.isSetIterator" | "util.types.isWeakMap" | "util.types.isWeakSet" | "util.types.isArrayBuffer" | "util.types.isDataView" | "util.types.isSharedArrayBuffer" | "util.types.isProxy" | "util.types.isModuleNamespaceObject" | "util.types.isAnyArrayBuffer" | "util.types.isBoxedPrimitive" | "util.types.isArrayBufferView" | "util.types.isTypedArray" | "util.types.isUint8Array" | "util.types.isUint8ClampedArray" | "util.types.isUint16Array" | "util.types.isUint32Array" | "util.types.isInt8Array" | "util.types.isInt16Array" | "util.types.isInt32Array" | "util.types.isFloat32Array" | "util.types.isFloat64Array" | "util.types.isBigInt64Array" | "util.types.isBigUint64Array" | "util.types.isKeyObject" | "util.types.isCryptoKey" | "util.types.isWebAssemblyCompiledModule" | "util._extend" | "util.isArray" | "util.isBoolean" | "util.isBuffer" | "util.isDate" | "util.isError" | "util.isFunction" | "util.isNull" | "util.isNullOrUndefined" | "util.isNumber" | "util.isObject" | "util.isPrimitive" | "util.isRegExp" | "util.isString" | "util.isSymbol" | "util.isUndefined" | "util.log" | "util" | "util/types" | "util/types.isExternal" | "util/types.isDate" | "util/types.isArgumentsObject" | "util/types.isBigIntObject" | "util/types.isBooleanObject" | "util/types.isNumberObject" | "util/types.isStringObject" | "util/types.isSymbolObject" | "util/types.isNativeError" | "util/types.isRegExp" | "util/types.isAsyncFunction" | "util/types.isGeneratorFunction" | "util/types.isGeneratorObject" | "util/types.isPromise" | "util/types.isMap" | "util/types.isSet" | "util/types.isMapIterator" | "util/types.isSetIterator" | "util/types.isWeakMap" | "util/types.isWeakSet" | "util/types.isArrayBuffer" | "util/types.isDataView" | "util/types.isSharedArrayBuffer" | "util/types.isProxy" | "util/types.isModuleNamespaceObject" | "util/types.isAnyArrayBuffer" | "util/types.isBoxedPrimitive" | "util/types.isArrayBufferView" | "util/types.isTypedArray" | "util/types.isUint8Array" | "util/types.isUint8ClampedArray" | "util/types.isUint16Array" | "util/types.isUint32Array" | "util/types.isInt8Array" | "util/types.isInt16Array" | "util/types.isInt32Array" | "util/types.isFloat32Array" | "util/types.isFloat64Array" | "util/types.isBigInt64Array" | "util/types.isBigUint64Array" | "util/types.isKeyObject" | "util/types.isCryptoKey" | "util/types.isWebAssemblyCompiledModule" | "v8" | "v8.serialize" | "v8.deserialize" | "v8.Serializer" | "v8.Deserializer" | "v8.DefaultSerializer" | "v8.DefaultDeserializer" | "v8.promiseHooks" | "v8.promiseHooks.onInit" | "v8.promiseHooks.onSettled" | "v8.promiseHooks.onBefore" | "v8.promiseHooks.onAfter" | "v8.promiseHooks.createHook" | "v8.startupSnapshot" | "v8.startupSnapshot.addSerializeCallback" | "v8.startupSnapshot.addDeserializeCallback" | "v8.startupSnapshot.setDeserializeMainFunction" | "v8.startupSnapshot.isBuildingSnapshot" | "v8.cachedDataVersionTag" | "v8.getHeapCodeStatistics" | "v8.getHeapSnapshot" | "v8.getHeapSpaceStatistics" | "v8.getHeapStatistics" | "v8.queryObjects" | "v8.setFlagsFromString" | "v8.stopCoverage" | "v8.takeCoverage" | "v8.writeHeapSnapshot" | "v8.setHeapSnapshotNearHeapLimit" | "v8.GCProfiler" | "vm.constants" | "vm.compileFunction" | "vm.createContext" | "vm.isContext" | "vm.measureMemory" | "vm.runInContext" | "vm.runInNewContext" | "vm.runInThisContext" | "vm.Script" | "vm.Module" | "vm.SourceTextModule" | "vm.SyntheticModule" | "vm" | "wasi.WASI" | "wasi" | "worker_threads" | "worker_threads.isMainThread" | "worker_threads.parentPort" | "worker_threads.resourceLimits" | "worker_threads.SHARE_ENV" | "worker_threads.threadId" | "worker_threads.workerData" | "worker_threads.getEnvironmentData" | "worker_threads.markAsUncloneable" | "worker_threads.markAsUntransferable" | "worker_threads.isMarkedAsUntransferable" | "worker_threads.moveMessagePortToContext" | "worker_threads.postMessageToThread" | "worker_threads.receiveMessageOnPort" | "worker_threads.setEnvironmentData" | "worker_threads.BroadcastChannel" | "worker_threads.MessageChannel" | "worker_threads.MessagePort" | "worker_threads.Worker" | "zlib.constants" | "zlib.crc32" | "zlib.createBrotliCompress" | "zlib.createBrotliDecompress" | "zlib.createDeflate" | "zlib.createDeflateRaw" | "zlib.createGunzip" | "zlib.createGzip" | "zlib.createInflate" | "zlib.createInflateRaw" | "zlib.createUnzip" | "zlib.brotliCompress" | "zlib.brotliCompressSync" | "zlib.brotliDecompress" | "zlib.brotliDecompressSync" | "zlib.deflate" | "zlib.deflateSync" | "zlib.deflateRaw" | "zlib.deflateRawSync" | "zlib.gunzip" | "zlib.gunzipSync" | "zlib.gzip" | "zlib.gzipSync" | "zlib.inflate" | "zlib.inflateSync" | "zlib.inflateRaw" | "zlib.inflateRawSync" | "zlib.unzip" | "zlib.unzipSync" | "zlib.BrotliCompress()" | "zlib.BrotliCompress" | "zlib.BrotliDecompress()" | "zlib.BrotliDecompress" | "zlib.Deflate()" | "zlib.Deflate" | "zlib.DeflateRaw()" | "zlib.DeflateRaw" | "zlib.Gunzip()" | "zlib.Gunzip" | "zlib.Gzip()" | "zlib.Gzip" | "zlib.Inflate()" | "zlib.Inflate" | "zlib.InflateRaw()" | "zlib.InflateRaw" | "zlib.Unzip()" | "zlib.Unzip" | "zlib")[]
7475
+ ignores?: ("__filename" | "__dirname" | "require" | "require.cache" | "require.extensions" | "require.main" | "require.resolve" | "require.resolve.paths" | "module" | "module.children" | "module.exports" | "module.filename" | "module.id" | "module.isPreloading" | "module.loaded" | "module.parent" | "module.path" | "module.paths" | "module.require" | "exports" | "AbortController" | "AbortSignal" | "AbortSignal.abort" | "AbortSignal.timeout" | "AbortSignal.any" | "DOMException" | "FormData" | "Headers" | "MessageEvent" | "Navigator" | "Request" | "Response" | "WebAssembly" | "WebSocket" | "fetch" | "global" | "queueMicrotask" | "navigator" | "navigator.hardwareConcurrency" | "navigator.language" | "navigator.languages" | "navigator.platform" | "navigator.userAgent" | "structuredClone" | "localStorage" | "sessionStorage" | "Storage" | "Blob" | "new Buffer()" | "Buffer" | "Buffer.alloc" | "Buffer.allocUnsafe" | "Buffer.allocUnsafeSlow" | "Buffer.byteLength" | "Buffer.compare" | "Buffer.concat" | "Buffer.copyBytesFrom" | "Buffer.from" | "Buffer.isBuffer" | "Buffer.isEncoding" | "File" | "atob" | "btoa" | "console" | "console.profile" | "console.profileEnd" | "console.timeStamp" | "console.Console" | "console.assert" | "console.clear" | "console.count" | "console.countReset" | "console.debug" | "console.dir" | "console.dirxml" | "console.error" | "console.group" | "console.groupCollapsed" | "console.groupEnd" | "console.info" | "console.log" | "console.table" | "console.time" | "console.timeEnd" | "console.timeLog" | "console.trace" | "console.warn" | "crypto" | "crypto.subtle" | "crypto.subtle.decrypt" | "crypto.subtle.deriveBits" | "crypto.subtle.deriveKey" | "crypto.subtle.digest" | "crypto.subtle.encrypt" | "crypto.subtle.exportKey" | "crypto.subtle.generateKey" | "crypto.subtle.importKey" | "crypto.subtle.sign" | "crypto.subtle.unwrapKey" | "crypto.subtle.verify" | "crypto.subtle.wrapKey" | "crypto.getRandomValues" | "crypto.randomUUID" | "Crypto" | "CryptoKey" | "SubtleCrypto" | "CloseEvent" | "CustomEvent" | "Event" | "EventSource" | "EventTarget" | "PerformanceEntry" | "PerformanceMark" | "PerformanceMeasure" | "PerformanceObserver" | "PerformanceObserverEntryList" | "PerformanceResourceTiming" | "performance" | "performance.clearMarks" | "performance.clearMeasures" | "performance.clearResourceTimings" | "performance.eventLoopUtilization" | "performance.getEntries" | "performance.getEntriesByName" | "performance.getEntriesByType" | "performance.mark" | "performance.markResourceTiming" | "performance.measure" | "performance.nodeTiming" | "performance.nodeTiming.bootstrapComplete" | "performance.nodeTiming.environment" | "performance.nodeTiming.idleTime" | "performance.nodeTiming.loopExit" | "performance.nodeTiming.loopStart" | "performance.nodeTiming.nodeStart" | "performance.nodeTiming.uvMetricsInfo" | "performance.nodeTiming.v8Start" | "performance.now" | "performance.onresourcetimingbufferfull" | "performance.setResourceTimingBufferSize" | "performance.timeOrigin" | "performance.timerify" | "performance.toJSON" | "process" | "process.allowedNodeEnvironmentFlags" | "process.availableMemory" | "process.arch" | "process.argv" | "process.argv0" | "process.channel" | "process.config" | "process.connected" | "process.debugPort" | "process.env" | "process.execArgv" | "process.execPath" | "process.exitCode" | "process.features.cached_builtins" | "process.features.debug" | "process.features.inspector" | "process.features.ipv6" | "process.features.require_module" | "process.features.tls" | "process.features.tls_alpn" | "process.features.tls_ocsp" | "process.features.tls_sni" | "process.features.typescript" | "process.features.uv" | "process.finalization.register" | "process.finalization.registerBeforeExit" | "process.finalization.unregister" | "process.getBuiltinModule" | "process.mainModule" | "process.noDeprecation" | "process.permission" | "process.pid" | "process.platform" | "process.ppid" | "process.release" | "process.report" | "process.report.excludeEnv" | "process.sourceMapsEnabled" | "process.stdin" | "process.stdin.isRaw" | "process.stdin.isTTY" | "process.stdin.setRawMode" | "process.stdout" | "process.stdout.clearLine" | "process.stdout.clearScreenDown" | "process.stdout.columns" | "process.stdout.cursorTo" | "process.stdout.getColorDepth" | "process.stdout.getWindowSize" | "process.stdout.hasColors" | "process.stdout.isTTY" | "process.stdout.moveCursor" | "process.stdout.rows" | "process.stderr" | "process.stderr.clearLine" | "process.stderr.clearScreenDown" | "process.stderr.columns" | "process.stderr.cursorTo" | "process.stderr.getColorDepth" | "process.stderr.getWindowSize" | "process.stderr.hasColors" | "process.stderr.isTTY" | "process.stderr.moveCursor" | "process.stderr.rows" | "process.throwDeprecation" | "process.title" | "process.traceDeprecation" | "process.version" | "process.versions" | "process.abort" | "process.chdir" | "process.constrainedMemory" | "process.cpuUsage" | "process.cwd" | "process.disconnect" | "process.dlopen" | "process.emitWarning" | "process.exit" | "process.getActiveResourcesInfo" | "process.getegid" | "process.geteuid" | "process.getgid" | "process.getgroups" | "process.getuid" | "process.hasUncaughtExceptionCaptureCallback" | "process.hrtime" | "process.hrtime.bigint" | "process.initgroups" | "process.kill" | "process.loadEnvFile" | "process.memoryUsage" | "process.rss" | "process.nextTick" | "process.resourceUsage" | "process.send" | "process.setegid" | "process.seteuid" | "process.setgid" | "process.setgroups" | "process.setuid" | "process.setSourceMapsEnabled" | "process.setUncaughtExceptionCaptureCallback" | "process.umask" | "process.uptime" | "ReadableStream" | "ReadableStream.from" | "ReadableStreamDefaultReader" | "ReadableStreamBYOBReader" | "ReadableStreamDefaultController" | "ReadableByteStreamController" | "ReadableStreamBYOBRequest" | "WritableStream" | "WritableStreamDefaultWriter" | "WritableStreamDefaultController" | "TransformStream" | "TransformStreamDefaultController" | "ByteLengthQueuingStrategy" | "CountQueuingStrategy" | "TextEncoderStream" | "TextDecoderStream" | "CompressionStream" | "DecompressionStream" | "setInterval" | "clearInterval" | "setTimeout" | "clearTimeout" | "setImmediate" | "clearImmediate" | "URL" | "URL.canParse" | "URL.createObjectURL" | "URL.revokeObjectURL" | "URLSearchParams" | "TextDecoder" | "TextEncoder" | "BroadcastChannel" | "MessageChannel" | "MessagePort" | "assert" | "assert.assert" | "assert.deepEqual" | "assert.deepStrictEqual" | "assert.doesNotMatch" | "assert.doesNotReject" | "assert.doesNotThrow" | "assert.equal" | "assert.fail" | "assert.ifError" | "assert.match" | "assert.notDeepEqual" | "assert.notDeepStrictEqual" | "assert.notEqual" | "assert.notStrictEqual" | "assert.ok" | "assert.rejects" | "assert.strictEqual" | "assert.throws" | "assert.CallTracker" | "assert.strict" | "assert.strict.assert" | "assert.strict.deepEqual" | "assert.strict.deepStrictEqual" | "assert.strict.doesNotMatch" | "assert.strict.doesNotReject" | "assert.strict.doesNotThrow" | "assert.strict.equal" | "assert.strict.fail" | "assert.strict.ifError" | "assert.strict.match" | "assert.strict.notDeepEqual" | "assert.strict.notDeepStrictEqual" | "assert.strict.notEqual" | "assert.strict.notStrictEqual" | "assert.strict.ok" | "assert.strict.rejects" | "assert.strict.strictEqual" | "assert.strict.throws" | "assert.strict.CallTracker" | "assert/strict" | "assert/strict.assert" | "assert/strict.deepEqual" | "assert/strict.deepStrictEqual" | "assert/strict.doesNotMatch" | "assert/strict.doesNotReject" | "assert/strict.doesNotThrow" | "assert/strict.equal" | "assert/strict.fail" | "assert/strict.ifError" | "assert/strict.match" | "assert/strict.notDeepEqual" | "assert/strict.notDeepStrictEqual" | "assert/strict.notEqual" | "assert/strict.notStrictEqual" | "assert/strict.ok" | "assert/strict.rejects" | "assert/strict.strictEqual" | "assert/strict.throws" | "assert/strict.CallTracker" | "async_hooks" | "async_hooks.createHook" | "async_hooks.executionAsyncResource" | "async_hooks.executionAsyncId" | "async_hooks.triggerAsyncId" | "async_hooks.AsyncLocalStorage" | "async_hooks.AsyncLocalStorage.bind" | "async_hooks.AsyncLocalStorage.snapshot" | "async_hooks.AsyncResource" | "async_hooks.AsyncResource.bind" | "buffer" | "buffer.constants" | "buffer.INSPECT_MAX_BYTES" | "buffer.kMaxLength" | "buffer.kStringMaxLength" | "buffer.atob" | "buffer.btoa" | "buffer.isAscii" | "buffer.isUtf8" | "buffer.resolveObjectURL" | "buffer.transcode" | "buffer.SlowBuffer" | "buffer.Blob" | "new buffer.Buffer()" | "buffer.Buffer" | "buffer.Buffer.alloc" | "buffer.Buffer.allocUnsafe" | "buffer.Buffer.allocUnsafeSlow" | "buffer.Buffer.byteLength" | "buffer.Buffer.compare" | "buffer.Buffer.concat" | "buffer.Buffer.copyBytesFrom" | "buffer.Buffer.from" | "buffer.Buffer.isBuffer" | "buffer.Buffer.isEncoding" | "buffer.File" | "child_process" | "child_process.exec" | "child_process.execFile" | "child_process.fork" | "child_process.spawn" | "child_process.execFileSync" | "child_process.execSync" | "child_process.spawnSync" | "child_process.ChildProcess" | "cluster" | "cluster.isMaster" | "cluster.isPrimary" | "cluster.isWorker" | "cluster.schedulingPolicy" | "cluster.settings" | "cluster.worker" | "cluster.workers" | "cluster.disconnect" | "cluster.fork" | "cluster.setupMaster" | "cluster.setupPrimary" | "cluster.Worker" | "crypto.constants" | "crypto.fips" | "crypto.webcrypto" | "crypto.webcrypto.subtle" | "crypto.webcrypto.subtle.decrypt" | "crypto.webcrypto.subtle.deriveBits" | "crypto.webcrypto.subtle.deriveKey" | "crypto.webcrypto.subtle.digest" | "crypto.webcrypto.subtle.encrypt" | "crypto.webcrypto.subtle.exportKey" | "crypto.webcrypto.subtle.generateKey" | "crypto.webcrypto.subtle.importKey" | "crypto.webcrypto.subtle.sign" | "crypto.webcrypto.subtle.unwrapKey" | "crypto.webcrypto.subtle.verify" | "crypto.webcrypto.subtle.wrapKey" | "crypto.webcrypto.getRandomValues" | "crypto.webcrypto.randomUUID" | "crypto.checkPrime" | "crypto.checkPrimeSync" | "crypto.createCipher" | "crypto.createCipheriv" | "crypto.createDecipher" | "crypto.createDecipheriv" | "crypto.createDiffieHellman" | "crypto.createDiffieHellmanGroup" | "crypto.createECDH" | "crypto.createHash" | "crypto.createHmac" | "crypto.createPrivateKey" | "crypto.createPublicKey" | "crypto.createSecretKey" | "crypto.createSign" | "crypto.createVerify" | "crypto.diffieHellman" | "crypto.generateKey" | "crypto.generateKeyPair" | "crypto.generateKeyPairSync" | "crypto.generateKeySync" | "crypto.generatePrime" | "crypto.generatePrimeSync" | "crypto.getCipherInfo" | "crypto.getCiphers" | "crypto.getCurves" | "crypto.getDiffieHellman" | "crypto.getFips" | "crypto.getHashes" | "crypto.hash" | "crypto.hkdf" | "crypto.hkdfSync" | "crypto.pbkdf2" | "crypto.pbkdf2Sync" | "crypto.privateDecrypt" | "crypto.privateEncrypt" | "crypto.publicDecrypt" | "crypto.publicEncrypt" | "crypto.randomBytes" | "crypto.randomFillSync" | "crypto.randomFill" | "crypto.randomInt" | "crypto.scrypt" | "crypto.scryptSync" | "crypto.secureHeapUsed" | "crypto.setEngine" | "crypto.setFips" | "crypto.sign" | "crypto.timingSafeEqual" | "crypto.verify" | "crypto.Certificate" | "crypto.Certificate.exportChallenge" | "crypto.Certificate.exportPublicKey" | "crypto.Certificate.verifySpkac" | "crypto.Cipher" | "crypto.Decipher" | "crypto.DiffieHellman" | "crypto.DiffieHellmanGroup" | "crypto.ECDH" | "crypto.ECDH.convertKey" | "crypto.Hash()" | "new crypto.Hash()" | "crypto.Hash" | "crypto.Hmac()" | "new crypto.Hmac()" | "crypto.Hmac" | "crypto.KeyObject" | "crypto.KeyObject.from" | "crypto.Sign" | "crypto.Verify" | "crypto.X509Certificate" | "dgram" | "dgram.createSocket" | "dgram.Socket" | "diagnostics_channel" | "diagnostics_channel.hasSubscribers" | "diagnostics_channel.channel" | "diagnostics_channel.subscribe" | "diagnostics_channel.unsubscribe" | "diagnostics_channel.tracingChannel" | "diagnostics_channel.Channel" | "diagnostics_channel.TracingChannel" | "dns" | "dns.Resolver" | "dns.getServers" | "dns.lookup" | "dns.lookupService" | "dns.resolve" | "dns.resolve4" | "dns.resolve6" | "dns.resolveAny" | "dns.resolveCname" | "dns.resolveCaa" | "dns.resolveMx" | "dns.resolveNaptr" | "dns.resolveNs" | "dns.resolvePtr" | "dns.resolveSoa" | "dns.resolveSrv" | "dns.resolveTxt" | "dns.reverse" | "dns.setDefaultResultOrder" | "dns.getDefaultResultOrder" | "dns.setServers" | "dns.promises" | "dns.promises.Resolver" | "dns.promises.cancel" | "dns.promises.getServers" | "dns.promises.lookup" | "dns.promises.lookupService" | "dns.promises.resolve" | "dns.promises.resolve4" | "dns.promises.resolve6" | "dns.promises.resolveAny" | "dns.promises.resolveCaa" | "dns.promises.resolveCname" | "dns.promises.resolveMx" | "dns.promises.resolveNaptr" | "dns.promises.resolveNs" | "dns.promises.resolvePtr" | "dns.promises.resolveSoa" | "dns.promises.resolveSrv" | "dns.promises.resolveTxt" | "dns.promises.reverse" | "dns.promises.setDefaultResultOrder" | "dns.promises.getDefaultResultOrder" | "dns.promises.setServers" | "dns/promises" | "dns/promises.Resolver" | "dns/promises.cancel" | "dns/promises.getServers" | "dns/promises.lookup" | "dns/promises.lookupService" | "dns/promises.resolve" | "dns/promises.resolve4" | "dns/promises.resolve6" | "dns/promises.resolveAny" | "dns/promises.resolveCaa" | "dns/promises.resolveCname" | "dns/promises.resolveMx" | "dns/promises.resolveNaptr" | "dns/promises.resolveNs" | "dns/promises.resolvePtr" | "dns/promises.resolveSoa" | "dns/promises.resolveSrv" | "dns/promises.resolveTxt" | "dns/promises.reverse" | "dns/promises.setDefaultResultOrder" | "dns/promises.getDefaultResultOrder" | "dns/promises.setServers" | "domain" | "domain.create" | "domain.Domain" | "events" | "events.Event" | "events.EventTarget" | "events.CustomEvent" | "events.NodeEventTarget" | "events.EventEmitter" | "events.EventEmitter.defaultMaxListeners" | "events.EventEmitter.errorMonitor" | "events.EventEmitter.captureRejections" | "events.EventEmitter.captureRejectionSymbol" | "events.EventEmitter.getEventListeners" | "events.EventEmitter.getMaxListeners" | "events.EventEmitter.once" | "events.EventEmitter.listenerCount" | "events.EventEmitter.on" | "events.EventEmitter.setMaxListeners" | "events.EventEmitter.addAbortListener" | "events.EventEmitterAsyncResource" | "events.EventEmitterAsyncResource.defaultMaxListeners" | "events.EventEmitterAsyncResource.errorMonitor" | "events.EventEmitterAsyncResource.captureRejections" | "events.EventEmitterAsyncResource.captureRejectionSymbol" | "events.EventEmitterAsyncResource.getEventListeners" | "events.EventEmitterAsyncResource.getMaxListeners" | "events.EventEmitterAsyncResource.once" | "events.EventEmitterAsyncResource.listenerCount" | "events.EventEmitterAsyncResource.on" | "events.EventEmitterAsyncResource.setMaxListeners" | "events.EventEmitterAsyncResource.addAbortListener" | "events.defaultMaxListeners" | "events.errorMonitor" | "events.captureRejections" | "events.captureRejectionSymbol" | "events.getEventListeners" | "events.getMaxListeners" | "events.once" | "events.listenerCount" | "events.on" | "events.setMaxListeners" | "events.addAbortListener" | "fs" | "fs.promises" | "fs.promises.FileHandle" | "fs.promises.access" | "fs.promises.appendFile" | "fs.promises.chmod" | "fs.promises.chown" | "fs.promises.constants" | "fs.promises.copyFile" | "fs.promises.cp" | "fs.promises.glob" | "fs.promises.lchmod" | "fs.promises.lchown" | "fs.promises.link" | "fs.promises.lstat" | "fs.promises.lutimes" | "fs.promises.mkdir" | "fs.promises.mkdtemp" | "fs.promises.open" | "fs.promises.opendir" | "fs.promises.readFile" | "fs.promises.readdir" | "fs.promises.readlink" | "fs.promises.realpath" | "fs.promises.rename" | "fs.promises.rm" | "fs.promises.rmdir" | "fs.promises.stat" | "fs.promises.statfs" | "fs.promises.symlink" | "fs.promises.truncate" | "fs.promises.unlink" | "fs.promises.utimes" | "fs.promises.watch" | "fs.promises.writeFile" | "fs.access" | "fs.appendFile" | "fs.chmod" | "fs.chown" | "fs.close" | "fs.copyFile" | "fs.cp" | "fs.createReadStream" | "fs.createWriteStream" | "fs.exists" | "fs.fchmod" | "fs.fchown" | "fs.fdatasync" | "fs.fstat" | "fs.fsync" | "fs.ftruncate" | "fs.futimes" | "fs.glob" | "fs.lchmod" | "fs.lchown" | "fs.link" | "fs.lstat" | "fs.lutimes" | "fs.mkdir" | "fs.mkdtemp" | "fs.native" | "fs.open" | "fs.openAsBlob" | "fs.opendir" | "fs.read" | "fs.readdir" | "fs.readFile" | "fs.readlink" | "fs.readv" | "fs.realpath" | "fs.realpath.native" | "fs.rename" | "fs.rm" | "fs.rmdir" | "fs.stat" | "fs.statfs" | "fs.symlink" | "fs.truncate" | "fs.unlink" | "fs.unwatchFile" | "fs.utimes" | "fs.watch" | "fs.watchFile" | "fs.write" | "fs.writeFile" | "fs.writev" | "fs.accessSync" | "fs.appendFileSync" | "fs.chmodSync" | "fs.chownSync" | "fs.closeSync" | "fs.copyFileSync" | "fs.cpSync" | "fs.existsSync" | "fs.fchmodSync" | "fs.fchownSync" | "fs.fdatasyncSync" | "fs.fstatSync" | "fs.fsyncSync" | "fs.ftruncateSync" | "fs.futimesSync" | "fs.globSync" | "fs.lchmodSync" | "fs.lchownSync" | "fs.linkSync" | "fs.lstatSync" | "fs.lutimesSync" | "fs.mkdirSync" | "fs.mkdtempSync" | "fs.opendirSync" | "fs.openSync" | "fs.readdirSync" | "fs.readFileSync" | "fs.readlinkSync" | "fs.readSync" | "fs.readvSync" | "fs.realpathSync" | "fs.realpathSync.native" | "fs.renameSync" | "fs.rmdirSync" | "fs.rmSync" | "fs.statfsSync" | "fs.statSync" | "fs.symlinkSync" | "fs.truncateSync" | "fs.unlinkSync" | "fs.utimesSync" | "fs.writeFileSync" | "fs.writeSync" | "fs.writevSync" | "fs.constants" | "fs.Dir" | "fs.Dirent" | "fs.FSWatcher" | "fs.StatWatcher" | "fs.ReadStream" | "fs.Stats()" | "new fs.Stats()" | "fs.Stats" | "fs.StatFs" | "fs.WriteStream" | "fs.common_objects" | "fs/promises" | "fs/promises.FileHandle" | "fs/promises.access" | "fs/promises.appendFile" | "fs/promises.chmod" | "fs/promises.chown" | "fs/promises.constants" | "fs/promises.copyFile" | "fs/promises.cp" | "fs/promises.glob" | "fs/promises.lchmod" | "fs/promises.lchown" | "fs/promises.link" | "fs/promises.lstat" | "fs/promises.lutimes" | "fs/promises.mkdir" | "fs/promises.mkdtemp" | "fs/promises.open" | "fs/promises.opendir" | "fs/promises.readFile" | "fs/promises.readdir" | "fs/promises.readlink" | "fs/promises.realpath" | "fs/promises.rename" | "fs/promises.rm" | "fs/promises.rmdir" | "fs/promises.stat" | "fs/promises.statfs" | "fs/promises.symlink" | "fs/promises.truncate" | "fs/promises.unlink" | "fs/promises.utimes" | "fs/promises.watch" | "fs/promises.writeFile" | "http2" | "http2.constants" | "http2.sensitiveHeaders" | "http2.createServer" | "http2.createSecureServer" | "http2.connect" | "http2.getDefaultSettings" | "http2.getPackedSettings" | "http2.getUnpackedSettings" | "http2.performServerHandshake" | "http2.Http2Session" | "http2.ServerHttp2Session" | "http2.ClientHttp2Session" | "http2.Http2Stream" | "http2.ClientHttp2Stream" | "http2.ServerHttp2Stream" | "http2.Http2Server" | "http2.Http2SecureServer" | "http2.Http2ServerRequest" | "http2.Http2ServerResponse" | "http" | "http.globalAgent" | "http.createServer" | "http.get" | "http.request" | "http.Agent" | "http.Server" | "inspector" | "inspector.Session" | "inspector.Network.loadingFailed" | "inspector.Network.loadingFinished" | "inspector.Network.requestWillBeSent" | "inspector.Network.responseReceived" | "inspector.console" | "inspector.close" | "inspector.open" | "inspector.url" | "inspector.waitForDebugger" | "inspector/promises" | "inspector/promises.Session" | "inspector/promises.Network.loadingFailed" | "inspector/promises.Network.loadingFinished" | "inspector/promises.Network.requestWillBeSent" | "inspector/promises.Network.responseReceived" | "inspector/promises.console" | "inspector/promises.close" | "inspector/promises.open" | "inspector/promises.url" | "inspector/promises.waitForDebugger" | "module.builtinModules" | "module.constants.compileCacheStatus" | "module.createRequire" | "module.createRequireFromPath" | "module.enableCompileCache" | "module.findPackageJSON" | "module.flushCompileCache" | "module.getCompileCacheDir" | "module.isBuiltin" | "module.register" | "module.stripTypeScriptTypes" | "module.syncBuiltinESMExports" | "module.findSourceMap" | "module.SourceMap" | "module.Module.builtinModules" | "module.Module.createRequire" | "module.Module.createRequireFromPath" | "module.Module.enableCompileCache" | "module.Module.findPackageJSON" | "module.Module.flushCompileCache" | "module.Module.getCompileCacheDir" | "module.Module.isBuiltin" | "module.Module.register" | "module.Module.stripTypeScriptTypes" | "module.Module.syncBuiltinESMExports" | "module.Module.findSourceMap" | "module.Module.SourceMap" | "net" | "net.connect" | "net.createConnection" | "net.createServer" | "net.getDefaultAutoSelectFamily" | "net.setDefaultAutoSelectFamily" | "net.getDefaultAutoSelectFamilyAttemptTimeout" | "net.setDefaultAutoSelectFamilyAttemptTimeout" | "net.isIP" | "net.isIPv4" | "net.isIPv6" | "net.BlockList" | "net.SocketAddress" | "net.Server" | "net.Socket" | "os" | "os.EOL" | "os.constants" | "os.constants.priority" | "os.devNull" | "os.availableParallelism" | "os.arch" | "os.cpus" | "os.endianness" | "os.freemem" | "os.getPriority" | "os.homedir" | "os.hostname" | "os.loadavg" | "os.machine" | "os.networkInterfaces" | "os.platform" | "os.release" | "os.setPriority" | "os.tmpdir" | "os.totalmem" | "os.type" | "os.uptime" | "os.userInfo" | "os.version" | "path" | "path.posix" | "path.posix.delimiter" | "path.posix.sep" | "path.posix.basename" | "path.posix.dirname" | "path.posix.extname" | "path.posix.format" | "path.posix.matchesGlob" | "path.posix.isAbsolute" | "path.posix.join" | "path.posix.normalize" | "path.posix.parse" | "path.posix.relative" | "path.posix.resolve" | "path.posix.toNamespacedPath" | "path.win32" | "path.win32.delimiter" | "path.win32.sep" | "path.win32.basename" | "path.win32.dirname" | "path.win32.extname" | "path.win32.format" | "path.win32.matchesGlob" | "path.win32.isAbsolute" | "path.win32.join" | "path.win32.normalize" | "path.win32.parse" | "path.win32.relative" | "path.win32.resolve" | "path.win32.toNamespacedPath" | "path.delimiter" | "path.sep" | "path.basename" | "path.dirname" | "path.extname" | "path.format" | "path.matchesGlob" | "path.isAbsolute" | "path.join" | "path.normalize" | "path.parse" | "path.relative" | "path.resolve" | "path.toNamespacedPath" | "path/posix" | "path/posix.delimiter" | "path/posix.sep" | "path/posix.basename" | "path/posix.dirname" | "path/posix.extname" | "path/posix.format" | "path/posix.matchesGlob" | "path/posix.isAbsolute" | "path/posix.join" | "path/posix.normalize" | "path/posix.parse" | "path/posix.relative" | "path/posix.resolve" | "path/posix.toNamespacedPath" | "path/win32" | "path/win32.delimiter" | "path/win32.sep" | "path/win32.basename" | "path/win32.dirname" | "path/win32.extname" | "path/win32.format" | "path/win32.matchesGlob" | "path/win32.isAbsolute" | "path/win32.join" | "path/win32.normalize" | "path/win32.parse" | "path/win32.relative" | "path/win32.resolve" | "path/win32.toNamespacedPath" | "perf_hooks" | "perf_hooks.performance" | "perf_hooks.performance.clearMarks" | "perf_hooks.performance.clearMeasures" | "perf_hooks.performance.clearResourceTimings" | "perf_hooks.performance.eventLoopUtilization" | "perf_hooks.performance.getEntries" | "perf_hooks.performance.getEntriesByName" | "perf_hooks.performance.getEntriesByType" | "perf_hooks.performance.mark" | "perf_hooks.performance.markResourceTiming" | "perf_hooks.performance.measure" | "perf_hooks.performance.nodeTiming" | "perf_hooks.performance.nodeTiming.bootstrapComplete" | "perf_hooks.performance.nodeTiming.environment" | "perf_hooks.performance.nodeTiming.idleTime" | "perf_hooks.performance.nodeTiming.loopExit" | "perf_hooks.performance.nodeTiming.loopStart" | "perf_hooks.performance.nodeTiming.nodeStart" | "perf_hooks.performance.nodeTiming.uvMetricsInfo" | "perf_hooks.performance.nodeTiming.v8Start" | "perf_hooks.performance.now" | "perf_hooks.performance.onresourcetimingbufferfull" | "perf_hooks.performance.setResourceTimingBufferSize" | "perf_hooks.performance.timeOrigin" | "perf_hooks.performance.timerify" | "perf_hooks.performance.toJSON" | "perf_hooks.createHistogram" | "perf_hooks.monitorEventLoopDelay" | "perf_hooks.PerformanceEntry" | "perf_hooks.PerformanceMark" | "perf_hooks.PerformanceMeasure" | "perf_hooks.PerformanceNodeEntry" | "perf_hooks.PerformanceNodeTiming" | "perf_hooks.PerformanceResourceTiming" | "perf_hooks.PerformanceObserver" | "perf_hooks.PerformanceObserverEntryList" | "perf_hooks.Histogram" | "perf_hooks.IntervalHistogram" | "perf_hooks.RecordableHistogram" | "punycode" | "punycode.ucs2" | "punycode.version" | "punycode.decode" | "punycode.encode" | "punycode.toASCII" | "punycode.toUnicode" | "querystring" | "querystring.decode" | "querystring.encode" | "querystring.escape" | "querystring.parse" | "querystring.stringify" | "querystring.unescape" | "readline" | "readline.promises" | "readline.promises.createInterface" | "readline.promises.Interface" | "readline.promises.Readline" | "readline.clearLine" | "readline.clearScreenDown" | "readline.createInterface" | "readline.cursorTo" | "readline.moveCursor" | "readline.Interface" | "readline.emitKeypressEvents" | "readline.InterfaceConstructor" | "readline/promises" | "readline/promises.createInterface" | "readline/promises.Interface" | "readline/promises.Readline" | "repl" | "repl.start" | "repl.writer" | "repl.REPLServer()" | "repl.REPLServer" | "repl.REPL_MODE_MAGIC" | "repl.REPL_MODE_SLOPPY" | "repl.REPL_MODE_STRICT" | "repl.Recoverable()" | "repl.Recoverable" | "repl.builtinModules" | "sea" | "sea.isSea" | "sea.getAsset" | "sea.getAssetAsBlob" | "sea.getRawAsset" | "sea.sea.isSea" | "sea.sea.getAsset" | "sea.sea.getAssetAsBlob" | "sea.sea.getRawAsset" | "stream" | "stream.promises" | "stream.promises.pipeline" | "stream.promises.finished" | "stream.finished" | "stream.pipeline" | "stream.compose" | "stream.duplexPair" | "stream.Readable" | "stream.Readable.from" | "stream.Readable.isDisturbed" | "stream.Readable.fromWeb" | "stream.Readable.toWeb" | "stream.Writable" | "stream.Writable.fromWeb" | "stream.Writable.toWeb" | "stream.Duplex" | "stream.Duplex.from" | "stream.Duplex.fromWeb" | "stream.Duplex.toWeb" | "stream.Transform" | "stream.isErrored" | "stream.isReadable" | "stream.addAbortSignal" | "stream.getDefaultHighWaterMark" | "stream.setDefaultHighWaterMark" | "stream/promises.pipeline" | "stream/promises.finished" | "stream/web" | "stream/web.ReadableStream" | "stream/web.ReadableStream.from" | "stream/web.ReadableStreamDefaultReader" | "stream/web.ReadableStreamBYOBReader" | "stream/web.ReadableStreamDefaultController" | "stream/web.ReadableByteStreamController" | "stream/web.ReadableStreamBYOBRequest" | "stream/web.WritableStream" | "stream/web.WritableStreamDefaultWriter" | "stream/web.WritableStreamDefaultController" | "stream/web.TransformStream" | "stream/web.TransformStreamDefaultController" | "stream/web.ByteLengthQueuingStrategy" | "stream/web.CountQueuingStrategy" | "stream/web.TextEncoderStream" | "stream/web.TextDecoderStream" | "stream/web.CompressionStream" | "stream/web.DecompressionStream" | "stream/consumers" | "stream/consumers.arrayBuffer" | "stream/consumers.blob" | "stream/consumers.buffer" | "stream/consumers.json" | "stream/consumers.text" | "string_decoder" | "string_decoder.StringDecoder" | "test" | "test.after" | "test.afterEach" | "test.before" | "test.beforeEach" | "test.describe" | "test.describe.only" | "test.describe.skip" | "test.describe.todo" | "test.it" | "test.it.only" | "test.it.skip" | "test.it.todo" | "test.mock" | "test.mock.fn" | "test.mock.getter" | "test.mock.method" | "test.mock.module" | "test.mock.reset" | "test.mock.restoreAll" | "test.mock.setter" | "test.mock.timers" | "test.mock.timers.enable" | "test.mock.timers.reset" | "test.mock.timers.tick" | "test.only" | "test.run" | "test.snapshot" | "test.snapshot.setDefaultSnapshotSerializers" | "test.snapshot.setResolveSnapshotPath" | "test.skip" | "test.suite" | "test.test" | "test.test.only" | "test.test.skip" | "test.test.todo" | "test.todo" | "timers" | "timers.Immediate" | "timers.Timeout" | "timers.setImmediate" | "timers.clearImmediate" | "timers.setInterval" | "timers.clearInterval" | "timers.setTimeout" | "timers.clearTimeout" | "timers.promises" | "timers.promises.setTimeout" | "timers.promises.setImmediate" | "timers.promises.setInterval" | "timers.promises.scheduler.wait" | "timers.promises.scheduler.yield" | "timers/promises" | "timers/promises.setTimeout" | "timers/promises.setImmediate" | "timers/promises.setInterval" | "timers/promises.scheduler.wait" | "timers/promises.scheduler.yield" | "tls" | "tls.rootCertificates" | "tls.DEFAULT_ECDH_CURVE" | "tls.DEFAULT_MAX_VERSION" | "tls.DEFAULT_MIN_VERSION" | "tls.DEFAULT_CIPHERS" | "tls.checkServerIdentity" | "tls.connect" | "tls.createSecureContext" | "tls.createSecurePair" | "tls.createServer" | "tls.getCiphers" | "tls.SecureContext" | "tls.CryptoStream" | "tls.SecurePair" | "tls.Server" | "tls.TLSSocket" | "trace_events" | "trace_events.createTracing" | "trace_events.getEnabledCategories" | "tty" | "tty.isatty" | "tty.ReadStream" | "tty.WriteStream" | "url" | "url.domainToASCII" | "url.domainToUnicode" | "url.fileURLToPath" | "url.format" | "url.pathToFileURL" | "url.urlToHttpOptions" | "url.URL" | "url.URL.canParse" | "url.URL.createObjectURL" | "url.URL.revokeObjectURL" | "url.URLSearchParams" | "url.Url" | "util.promisify" | "util.promisify.custom" | "util.callbackify" | "util.debuglog" | "util.debug" | "util.deprecate" | "util.format" | "util.formatWithOptions" | "util.getCallSite" | "util.getCallSites" | "util.getSystemErrorName" | "util.getSystemErrorMap" | "util.getSystemErrorMessage" | "util.inherits" | "util.inspect" | "util.inspect.custom" | "util.inspect.defaultOptions" | "util.inspect.replDefaults" | "util.isDeepStrictEqual" | "util.parseArgs" | "util.parseEnv" | "util.stripVTControlCharacters" | "util.styleText" | "util.toUSVString" | "util.transferableAbortController" | "util.transferableAbortSignal" | "util.aborted" | "util.MIMEType" | "util.MIMEParams" | "util.TextDecoder" | "util.TextEncoder" | "util.types" | "util.types.isExternal" | "util.types.isDate" | "util.types.isArgumentsObject" | "util.types.isBigIntObject" | "util.types.isBooleanObject" | "util.types.isNumberObject" | "util.types.isStringObject" | "util.types.isSymbolObject" | "util.types.isNativeError" | "util.types.isRegExp" | "util.types.isAsyncFunction" | "util.types.isGeneratorFunction" | "util.types.isGeneratorObject" | "util.types.isPromise" | "util.types.isMap" | "util.types.isSet" | "util.types.isMapIterator" | "util.types.isSetIterator" | "util.types.isWeakMap" | "util.types.isWeakSet" | "util.types.isArrayBuffer" | "util.types.isDataView" | "util.types.isSharedArrayBuffer" | "util.types.isProxy" | "util.types.isModuleNamespaceObject" | "util.types.isAnyArrayBuffer" | "util.types.isBoxedPrimitive" | "util.types.isArrayBufferView" | "util.types.isTypedArray" | "util.types.isUint8Array" | "util.types.isUint8ClampedArray" | "util.types.isUint16Array" | "util.types.isUint32Array" | "util.types.isInt8Array" | "util.types.isInt16Array" | "util.types.isInt32Array" | "util.types.isFloat32Array" | "util.types.isFloat64Array" | "util.types.isBigInt64Array" | "util.types.isBigUint64Array" | "util.types.isKeyObject" | "util.types.isCryptoKey" | "util.types.isWebAssemblyCompiledModule" | "util._extend" | "util.isArray" | "util.isBoolean" | "util.isBuffer" | "util.isDate" | "util.isError" | "util.isFunction" | "util.isNull" | "util.isNullOrUndefined" | "util.isNumber" | "util.isObject" | "util.isPrimitive" | "util.isRegExp" | "util.isString" | "util.isSymbol" | "util.isUndefined" | "util.log" | "util" | "util/types" | "util/types.isExternal" | "util/types.isDate" | "util/types.isArgumentsObject" | "util/types.isBigIntObject" | "util/types.isBooleanObject" | "util/types.isNumberObject" | "util/types.isStringObject" | "util/types.isSymbolObject" | "util/types.isNativeError" | "util/types.isRegExp" | "util/types.isAsyncFunction" | "util/types.isGeneratorFunction" | "util/types.isGeneratorObject" | "util/types.isPromise" | "util/types.isMap" | "util/types.isSet" | "util/types.isMapIterator" | "util/types.isSetIterator" | "util/types.isWeakMap" | "util/types.isWeakSet" | "util/types.isArrayBuffer" | "util/types.isDataView" | "util/types.isSharedArrayBuffer" | "util/types.isProxy" | "util/types.isModuleNamespaceObject" | "util/types.isAnyArrayBuffer" | "util/types.isBoxedPrimitive" | "util/types.isArrayBufferView" | "util/types.isTypedArray" | "util/types.isUint8Array" | "util/types.isUint8ClampedArray" | "util/types.isUint16Array" | "util/types.isUint32Array" | "util/types.isInt8Array" | "util/types.isInt16Array" | "util/types.isInt32Array" | "util/types.isFloat32Array" | "util/types.isFloat64Array" | "util/types.isBigInt64Array" | "util/types.isBigUint64Array" | "util/types.isKeyObject" | "util/types.isCryptoKey" | "util/types.isWebAssemblyCompiledModule" | "v8" | "v8.serialize" | "v8.deserialize" | "v8.Serializer" | "v8.Deserializer" | "v8.DefaultSerializer" | "v8.DefaultDeserializer" | "v8.promiseHooks" | "v8.promiseHooks.onInit" | "v8.promiseHooks.onSettled" | "v8.promiseHooks.onBefore" | "v8.promiseHooks.onAfter" | "v8.promiseHooks.createHook" | "v8.startupSnapshot" | "v8.startupSnapshot.addSerializeCallback" | "v8.startupSnapshot.addDeserializeCallback" | "v8.startupSnapshot.setDeserializeMainFunction" | "v8.startupSnapshot.isBuildingSnapshot" | "v8.cachedDataVersionTag" | "v8.getHeapCodeStatistics" | "v8.getHeapSnapshot" | "v8.getHeapSpaceStatistics" | "v8.getHeapStatistics" | "v8.queryObjects" | "v8.setFlagsFromString" | "v8.stopCoverage" | "v8.takeCoverage" | "v8.writeHeapSnapshot" | "v8.setHeapSnapshotNearHeapLimit" | "v8.GCProfiler" | "vm.constants" | "vm.compileFunction" | "vm.createContext" | "vm.isContext" | "vm.measureMemory" | "vm.runInContext" | "vm.runInNewContext" | "vm.runInThisContext" | "vm.Script" | "vm.Module" | "vm.SourceTextModule" | "vm.SyntheticModule" | "vm" | "wasi.WASI" | "wasi" | "worker_threads" | "worker_threads.isMainThread" | "worker_threads.parentPort" | "worker_threads.resourceLimits" | "worker_threads.SHARE_ENV" | "worker_threads.threadId" | "worker_threads.workerData" | "worker_threads.getEnvironmentData" | "worker_threads.markAsUncloneable" | "worker_threads.markAsUntransferable" | "worker_threads.isMarkedAsUntransferable" | "worker_threads.moveMessagePortToContext" | "worker_threads.postMessageToThread" | "worker_threads.receiveMessageOnPort" | "worker_threads.setEnvironmentData" | "worker_threads.BroadcastChannel" | "worker_threads.MessageChannel" | "worker_threads.MessagePort" | "worker_threads.Worker" | "zlib.constants" | "zlib.crc32" | "zlib.createBrotliCompress" | "zlib.createBrotliDecompress" | "zlib.createDeflate" | "zlib.createDeflateRaw" | "zlib.createGunzip" | "zlib.createGzip" | "zlib.createInflate" | "zlib.createInflateRaw" | "zlib.createUnzip" | "zlib.brotliCompress" | "zlib.brotliCompressSync" | "zlib.brotliDecompress" | "zlib.brotliDecompressSync" | "zlib.deflate" | "zlib.deflateSync" | "zlib.deflateRaw" | "zlib.deflateRawSync" | "zlib.gunzip" | "zlib.gunzipSync" | "zlib.gzip" | "zlib.gzipSync" | "zlib.inflate" | "zlib.inflateSync" | "zlib.inflateRaw" | "zlib.inflateRawSync" | "zlib.unzip" | "zlib.unzipSync" | "zlib.BrotliCompress()" | "zlib.BrotliCompress" | "zlib.BrotliDecompress()" | "zlib.BrotliDecompress" | "zlib.Deflate()" | "zlib.Deflate" | "zlib.DeflateRaw()" | "zlib.DeflateRaw" | "zlib.Gunzip()" | "zlib.Gunzip" | "zlib.Gzip()" | "zlib.Gzip" | "zlib.Inflate()" | "zlib.Inflate" | "zlib.InflateRaw()" | "zlib.InflateRaw" | "zlib.Unzip()" | "zlib.Unzip" | "zlib" | "import.meta.resolve" | "import.meta.dirname" | "import.meta.filename")[]
7465
7476
  }]
7466
7477
  // ----- n/prefer-global/buffer -----
7467
7478
  type NPreferGlobalBuffer = []|[("always" | "never")]
@@ -7982,8 +7993,6 @@ type PaddingLineBetweenStatements = {
7982
7993
  // ----- perfectionist/sort-array-includes -----
7983
7994
  type PerfectionistSortArrayIncludes = {
7984
7995
 
7985
- specialCharacters?: ("remove" | "trim" | "keep")
7986
-
7987
7996
  fallbackSort?: {
7988
7997
 
7989
7998
  order?: ("asc" | "desc")
@@ -7992,6 +8001,8 @@ type PerfectionistSortArrayIncludes = {
7992
8001
  [k: string]: unknown | undefined
7993
8002
  }
7994
8003
 
8004
+ specialCharacters?: ("remove" | "trim" | "keep")
8005
+
7995
8006
  ignoreCase?: boolean
7996
8007
 
7997
8008
  alphabet?: string
@@ -8006,13 +8017,21 @@ type PerfectionistSortArrayIncludes = {
8006
8017
 
8007
8018
  customGroups?: ({
8008
8019
 
8009
- groupName?: string
8020
+ newlinesInside?: ("always" | "never")
8010
8021
 
8011
- type?: ("alphabetical" | "line-length" | "natural" | "unsorted")
8022
+ fallbackSort?: {
8023
+
8024
+ order?: ("asc" | "desc")
8025
+
8026
+ type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
8027
+ [k: string]: unknown | undefined
8028
+ }
8029
+
8030
+ groupName?: string
8012
8031
 
8013
- order?: ("desc" | "asc")
8032
+ order?: ("asc" | "desc")
8014
8033
 
8015
- newlinesInside?: ("always" | "never")
8034
+ type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
8016
8035
  anyOf?: {
8017
8036
 
8018
8037
  selector?: ("literal" | "spread")
@@ -8027,13 +8046,21 @@ type PerfectionistSortArrayIncludes = {
8027
8046
  }[]
8028
8047
  } | {
8029
8048
 
8030
- groupName?: string
8049
+ newlinesInside?: ("always" | "never")
8050
+
8051
+ fallbackSort?: {
8052
+
8053
+ order?: ("asc" | "desc")
8054
+
8055
+ type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
8056
+ [k: string]: unknown | undefined
8057
+ }
8031
8058
 
8032
- type?: ("alphabetical" | "line-length" | "natural" | "unsorted")
8059
+ groupName?: string
8033
8060
 
8034
- order?: ("desc" | "asc")
8061
+ order?: ("asc" | "desc")
8035
8062
 
8036
- newlinesInside?: ("always" | "never")
8063
+ type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
8037
8064
 
8038
8065
  selector?: ("literal" | "spread")
8039
8066
 
@@ -8091,8 +8118,6 @@ type PerfectionistSortArrayIncludes = {
8091
8118
  // ----- perfectionist/sort-classes -----
8092
8119
  type PerfectionistSortClasses = []|[{
8093
8120
 
8094
- specialCharacters?: ("remove" | "trim" | "keep")
8095
-
8096
8121
  fallbackSort?: {
8097
8122
 
8098
8123
  order?: ("asc" | "desc")
@@ -8101,6 +8126,8 @@ type PerfectionistSortClasses = []|[{
8101
8126
  [k: string]: unknown | undefined
8102
8127
  }
8103
8128
 
8129
+ specialCharacters?: ("remove" | "trim" | "keep")
8130
+
8104
8131
  ignoreCase?: boolean
8105
8132
 
8106
8133
  alphabet?: string
@@ -8113,13 +8140,21 @@ type PerfectionistSortClasses = []|[{
8113
8140
 
8114
8141
  customGroups?: ({
8115
8142
 
8116
- groupName?: string
8143
+ newlinesInside?: ("always" | "never")
8144
+
8145
+ fallbackSort?: {
8146
+
8147
+ order?: ("asc" | "desc")
8148
+
8149
+ type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
8150
+ [k: string]: unknown | undefined
8151
+ }
8117
8152
 
8118
- type?: ("alphabetical" | "line-length" | "natural" | "unsorted")
8153
+ groupName?: string
8119
8154
 
8120
- order?: ("desc" | "asc")
8155
+ order?: ("asc" | "desc")
8121
8156
 
8122
- newlinesInside?: ("always" | "never")
8157
+ type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
8123
8158
  anyOf?: {
8124
8159
 
8125
8160
  modifiers?: ("async" | "protected" | "private" | "public" | "static" | "abstract" | "override" | "readonly" | "decorated" | "declare" | "optional")[]
@@ -8152,13 +8187,21 @@ type PerfectionistSortClasses = []|[{
8152
8187
  }[]
8153
8188
  } | {
8154
8189
 
8155
- groupName?: string
8190
+ newlinesInside?: ("always" | "never")
8191
+
8192
+ fallbackSort?: {
8193
+
8194
+ order?: ("asc" | "desc")
8195
+
8196
+ type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
8197
+ [k: string]: unknown | undefined
8198
+ }
8156
8199
 
8157
- type?: ("alphabetical" | "line-length" | "natural" | "unsorted")
8200
+ groupName?: string
8158
8201
 
8159
- order?: ("desc" | "asc")
8202
+ order?: ("asc" | "desc")
8160
8203
 
8161
- newlinesInside?: ("always" | "never")
8204
+ type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
8162
8205
 
8163
8206
  modifiers?: ("async" | "protected" | "private" | "public" | "static" | "abstract" | "override" | "readonly" | "decorated" | "declare" | "optional")[]
8164
8207
 
@@ -8232,8 +8275,6 @@ type PerfectionistSortClasses = []|[{
8232
8275
  // ----- perfectionist/sort-decorators -----
8233
8276
  type PerfectionistSortDecorators = []|[{
8234
8277
 
8235
- specialCharacters?: ("remove" | "trim" | "keep")
8236
-
8237
8278
  fallbackSort?: {
8238
8279
 
8239
8280
  order?: ("asc" | "desc")
@@ -8242,6 +8283,8 @@ type PerfectionistSortDecorators = []|[{
8242
8283
  [k: string]: unknown | undefined
8243
8284
  }
8244
8285
 
8286
+ specialCharacters?: ("remove" | "trim" | "keep")
8287
+
8245
8288
  ignoreCase?: boolean
8246
8289
 
8247
8290
  alphabet?: string
@@ -8297,8 +8340,6 @@ type PerfectionistSortDecorators = []|[{
8297
8340
  // ----- perfectionist/sort-enums -----
8298
8341
  type PerfectionistSortEnums = []|[{
8299
8342
 
8300
- specialCharacters?: ("remove" | "trim" | "keep")
8301
-
8302
8343
  fallbackSort?: {
8303
8344
 
8304
8345
  order?: ("asc" | "desc")
@@ -8307,6 +8348,8 @@ type PerfectionistSortEnums = []|[{
8307
8348
  [k: string]: unknown | undefined
8308
8349
  }
8309
8350
 
8351
+ specialCharacters?: ("remove" | "trim" | "keep")
8352
+
8310
8353
  ignoreCase?: boolean
8311
8354
 
8312
8355
  alphabet?: string
@@ -8322,13 +8365,21 @@ type PerfectionistSortEnums = []|[{
8322
8365
  [k: string]: (string | string[]) | undefined
8323
8366
  } | ({
8324
8367
 
8325
- groupName?: string
8368
+ newlinesInside?: ("always" | "never")
8369
+
8370
+ fallbackSort?: {
8371
+
8372
+ order?: ("asc" | "desc")
8373
+
8374
+ type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
8375
+ [k: string]: unknown | undefined
8376
+ }
8326
8377
 
8327
- type?: ("alphabetical" | "line-length" | "natural" | "unsorted")
8378
+ groupName?: string
8328
8379
 
8329
- order?: ("desc" | "asc")
8380
+ order?: ("asc" | "desc")
8330
8381
 
8331
- newlinesInside?: ("always" | "never")
8382
+ type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
8332
8383
  anyOf?: {
8333
8384
 
8334
8385
  elementValuePattern?: (({
@@ -8349,13 +8400,21 @@ type PerfectionistSortEnums = []|[{
8349
8400
  }[]
8350
8401
  } | {
8351
8402
 
8352
- groupName?: string
8403
+ newlinesInside?: ("always" | "never")
8353
8404
 
8354
- type?: ("alphabetical" | "line-length" | "natural" | "unsorted")
8405
+ fallbackSort?: {
8406
+
8407
+ order?: ("asc" | "desc")
8408
+
8409
+ type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
8410
+ [k: string]: unknown | undefined
8411
+ }
8355
8412
 
8356
- order?: ("desc" | "asc")
8413
+ groupName?: string
8357
8414
 
8358
- newlinesInside?: ("always" | "never")
8415
+ order?: ("asc" | "desc")
8416
+
8417
+ type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
8359
8418
 
8360
8419
  elementValuePattern?: (({
8361
8420
  pattern?: string
@@ -8411,8 +8470,6 @@ type PerfectionistSortEnums = []|[{
8411
8470
  // ----- perfectionist/sort-exports -----
8412
8471
  type PerfectionistSortExports = []|[{
8413
8472
 
8414
- specialCharacters?: ("remove" | "trim" | "keep")
8415
-
8416
8473
  fallbackSort?: {
8417
8474
 
8418
8475
  order?: ("asc" | "desc")
@@ -8421,6 +8478,8 @@ type PerfectionistSortExports = []|[{
8421
8478
  [k: string]: unknown | undefined
8422
8479
  }
8423
8480
 
8481
+ specialCharacters?: ("remove" | "trim" | "keep")
8482
+
8424
8483
  ignoreCase?: boolean
8425
8484
 
8426
8485
  alphabet?: string
@@ -8461,8 +8520,6 @@ type PerfectionistSortExports = []|[{
8461
8520
  // ----- perfectionist/sort-heritage-clauses -----
8462
8521
  type PerfectionistSortHeritageClauses = []|[{
8463
8522
 
8464
- specialCharacters?: ("remove" | "trim" | "keep")
8465
-
8466
8523
  fallbackSort?: {
8467
8524
 
8468
8525
  order?: ("asc" | "desc")
@@ -8471,6 +8528,8 @@ type PerfectionistSortHeritageClauses = []|[{
8471
8528
  [k: string]: unknown | undefined
8472
8529
  }
8473
8530
 
8531
+ specialCharacters?: ("remove" | "trim" | "keep")
8532
+
8474
8533
  ignoreCase?: boolean
8475
8534
 
8476
8535
  alphabet?: string
@@ -8494,8 +8553,6 @@ type PerfectionistSortHeritageClauses = []|[{
8494
8553
  type PerfectionistSortImports = []|[_PerfectionistSortImportsSortImports]
8495
8554
  type _PerfectionistSortImportsSortImports = (_PerfectionistSortImportsMaxLineLengthRequiresLineLengthType & {
8496
8555
 
8497
- specialCharacters?: ("remove" | "trim" | "keep")
8498
-
8499
8556
  fallbackSort?: {
8500
8557
 
8501
8558
  order?: ("asc" | "desc")
@@ -8504,6 +8561,8 @@ type _PerfectionistSortImportsSortImports = (_PerfectionistSortImportsMaxLineLen
8504
8561
  [k: string]: unknown | undefined
8505
8562
  }
8506
8563
 
8564
+ specialCharacters?: ("remove" | "trim" | "keep")
8565
+
8507
8566
  ignoreCase?: boolean
8508
8567
 
8509
8568
  alphabet?: string
@@ -8583,8 +8642,6 @@ interface _PerfectionistSortImports_IsLineLength {
8583
8642
  // ----- perfectionist/sort-interfaces -----
8584
8643
  type PerfectionistSortInterfaces = {
8585
8644
 
8586
- specialCharacters?: ("remove" | "trim" | "keep")
8587
-
8588
8645
  fallbackSort?: {
8589
8646
 
8590
8647
  order?: ("asc" | "desc")
@@ -8593,6 +8650,8 @@ type PerfectionistSortInterfaces = {
8593
8650
  [k: string]: unknown | undefined
8594
8651
  }
8595
8652
 
8653
+ specialCharacters?: ("remove" | "trim" | "keep")
8654
+
8596
8655
  ignoreCase?: boolean
8597
8656
 
8598
8657
  alphabet?: string
@@ -8606,19 +8665,36 @@ type PerfectionistSortInterfaces = {
8606
8665
  [k: string]: (string | string[]) | undefined
8607
8666
  } | ({
8608
8667
 
8609
- groupName?: string
8668
+ newlinesInside?: ("always" | "never")
8610
8669
 
8611
- type?: ("alphabetical" | "line-length" | "natural" | "unsorted")
8670
+ fallbackSort?: {
8671
+
8672
+ order?: ("asc" | "desc")
8673
+
8674
+ type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
8675
+ sortBy?: ("name" | "value")
8676
+ [k: string]: unknown | undefined
8677
+ }
8612
8678
 
8613
- order?: ("desc" | "asc")
8679
+ groupName?: string
8614
8680
 
8615
- newlinesInside?: ("always" | "never")
8681
+ order?: ("asc" | "desc")
8682
+
8683
+ type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
8616
8684
  anyOf?: {
8617
8685
 
8618
8686
  modifiers?: ("optional" | "required" | "multiline")[]
8619
8687
 
8620
8688
  selector?: ("index-signature" | "member" | "method" | "multiline" | "property")
8621
8689
 
8690
+ elementValuePattern?: (({
8691
+ pattern?: string
8692
+ flags?: string
8693
+ } | string)[] | ({
8694
+ pattern?: string
8695
+ flags?: string
8696
+ } | string))
8697
+
8622
8698
  elementNamePattern?: (({
8623
8699
  pattern?: string
8624
8700
  flags?: string
@@ -8626,21 +8702,39 @@ type PerfectionistSortInterfaces = {
8626
8702
  pattern?: string
8627
8703
  flags?: string
8628
8704
  } | string))
8705
+ sortBy?: ("name" | "value")
8629
8706
  }[]
8630
8707
  } | {
8631
8708
 
8632
- groupName?: string
8709
+ newlinesInside?: ("always" | "never")
8633
8710
 
8634
- type?: ("alphabetical" | "line-length" | "natural" | "unsorted")
8711
+ fallbackSort?: {
8712
+
8713
+ order?: ("asc" | "desc")
8714
+
8715
+ type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
8716
+ sortBy?: ("name" | "value")
8717
+ [k: string]: unknown | undefined
8718
+ }
8635
8719
 
8636
- order?: ("desc" | "asc")
8720
+ groupName?: string
8637
8721
 
8638
- newlinesInside?: ("always" | "never")
8722
+ order?: ("asc" | "desc")
8723
+
8724
+ type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
8639
8725
 
8640
8726
  modifiers?: ("optional" | "required" | "multiline")[]
8641
8727
 
8642
8728
  selector?: ("index-signature" | "member" | "method" | "multiline" | "property")
8643
8729
 
8730
+ elementValuePattern?: (({
8731
+ pattern?: string
8732
+ flags?: string
8733
+ } | string)[] | ({
8734
+ pattern?: string
8735
+ flags?: string
8736
+ } | string))
8737
+
8644
8738
  elementNamePattern?: (({
8645
8739
  pattern?: string
8646
8740
  flags?: string
@@ -8648,6 +8742,7 @@ type PerfectionistSortInterfaces = {
8648
8742
  pattern?: string
8649
8743
  flags?: string
8650
8744
  } | string))
8745
+ sortBy?: ("name" | "value")
8651
8746
  })[])
8652
8747
  useConfigurationIf?: {
8653
8748
 
@@ -8704,6 +8799,7 @@ type PerfectionistSortInterfaces = {
8704
8799
  pattern?: string
8705
8800
  flags?: string
8706
8801
  } | string))
8802
+ sortBy?: ("name" | "value")
8707
8803
 
8708
8804
  groups?: (string | string[] | {
8709
8805
 
@@ -8713,8 +8809,6 @@ type PerfectionistSortInterfaces = {
8713
8809
  // ----- perfectionist/sort-intersection-types -----
8714
8810
  type PerfectionistSortIntersectionTypes = []|[{
8715
8811
 
8716
- specialCharacters?: ("remove" | "trim" | "keep")
8717
-
8718
8812
  fallbackSort?: {
8719
8813
 
8720
8814
  order?: ("asc" | "desc")
@@ -8723,6 +8817,8 @@ type PerfectionistSortIntersectionTypes = []|[{
8723
8817
  [k: string]: unknown | undefined
8724
8818
  }
8725
8819
 
8820
+ specialCharacters?: ("remove" | "trim" | "keep")
8821
+
8726
8822
  ignoreCase?: boolean
8727
8823
 
8728
8824
  alphabet?: string
@@ -8768,8 +8864,6 @@ type PerfectionistSortIntersectionTypes = []|[{
8768
8864
  // ----- perfectionist/sort-jsx-props -----
8769
8865
  type PerfectionistSortJsxProps = {
8770
8866
 
8771
- specialCharacters?: ("remove" | "trim" | "keep")
8772
-
8773
8867
  fallbackSort?: {
8774
8868
 
8775
8869
  order?: ("asc" | "desc")
@@ -8778,6 +8872,8 @@ type PerfectionistSortJsxProps = {
8778
8872
  [k: string]: unknown | undefined
8779
8873
  }
8780
8874
 
8875
+ specialCharacters?: ("remove" | "trim" | "keep")
8876
+
8781
8877
  ignoreCase?: boolean
8782
8878
 
8783
8879
  alphabet?: string
@@ -8830,8 +8926,6 @@ type PerfectionistSortJsxProps = {
8830
8926
  // ----- perfectionist/sort-maps -----
8831
8927
  type PerfectionistSortMaps = {
8832
8928
 
8833
- specialCharacters?: ("remove" | "trim" | "keep")
8834
-
8835
8929
  fallbackSort?: {
8836
8930
 
8837
8931
  order?: ("asc" | "desc")
@@ -8840,6 +8934,8 @@ type PerfectionistSortMaps = {
8840
8934
  [k: string]: unknown | undefined
8841
8935
  }
8842
8936
 
8937
+ specialCharacters?: ("remove" | "trim" | "keep")
8938
+
8843
8939
  ignoreCase?: boolean
8844
8940
 
8845
8941
  alphabet?: string
@@ -8852,13 +8948,21 @@ type PerfectionistSortMaps = {
8852
8948
 
8853
8949
  customGroups?: ({
8854
8950
 
8855
- groupName?: string
8951
+ newlinesInside?: ("always" | "never")
8856
8952
 
8857
- type?: ("alphabetical" | "line-length" | "natural" | "unsorted")
8953
+ fallbackSort?: {
8954
+
8955
+ order?: ("asc" | "desc")
8956
+
8957
+ type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
8958
+ [k: string]: unknown | undefined
8959
+ }
8858
8960
 
8859
- order?: ("desc" | "asc")
8961
+ groupName?: string
8860
8962
 
8861
- newlinesInside?: ("always" | "never")
8963
+ order?: ("asc" | "desc")
8964
+
8965
+ type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
8862
8966
  anyOf?: {
8863
8967
 
8864
8968
  elementNamePattern?: (({
@@ -8871,13 +8975,21 @@ type PerfectionistSortMaps = {
8871
8975
  }[]
8872
8976
  } | {
8873
8977
 
8874
- groupName?: string
8978
+ newlinesInside?: ("always" | "never")
8979
+
8980
+ fallbackSort?: {
8981
+
8982
+ order?: ("asc" | "desc")
8983
+
8984
+ type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
8985
+ [k: string]: unknown | undefined
8986
+ }
8875
8987
 
8876
- type?: ("alphabetical" | "line-length" | "natural" | "unsorted")
8988
+ groupName?: string
8877
8989
 
8878
- order?: ("desc" | "asc")
8990
+ order?: ("asc" | "desc")
8879
8991
 
8880
- newlinesInside?: ("always" | "never")
8992
+ type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
8881
8993
 
8882
8994
  elementNamePattern?: (({
8883
8995
  pattern?: string
@@ -8933,8 +9045,6 @@ type PerfectionistSortMaps = {
8933
9045
  // ----- perfectionist/sort-modules -----
8934
9046
  type PerfectionistSortModules = []|[{
8935
9047
 
8936
- specialCharacters?: ("remove" | "trim" | "keep")
8937
-
8938
9048
  fallbackSort?: {
8939
9049
 
8940
9050
  order?: ("asc" | "desc")
@@ -8943,6 +9053,8 @@ type PerfectionistSortModules = []|[{
8943
9053
  [k: string]: unknown | undefined
8944
9054
  }
8945
9055
 
9056
+ specialCharacters?: ("remove" | "trim" | "keep")
9057
+
8946
9058
  ignoreCase?: boolean
8947
9059
 
8948
9060
  alphabet?: string
@@ -8955,13 +9067,21 @@ type PerfectionistSortModules = []|[{
8955
9067
 
8956
9068
  customGroups?: ({
8957
9069
 
8958
- groupName?: string
9070
+ newlinesInside?: ("always" | "never")
9071
+
9072
+ fallbackSort?: {
9073
+
9074
+ order?: ("asc" | "desc")
9075
+
9076
+ type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
9077
+ [k: string]: unknown | undefined
9078
+ }
8959
9079
 
8960
- type?: ("alphabetical" | "line-length" | "natural" | "unsorted")
9080
+ groupName?: string
8961
9081
 
8962
- order?: ("desc" | "asc")
9082
+ order?: ("asc" | "desc")
8963
9083
 
8964
- newlinesInside?: ("always" | "never")
9084
+ type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
8965
9085
  anyOf?: {
8966
9086
 
8967
9087
  modifiers?: ("async" | "declare" | "decorated" | "default" | "export")[]
@@ -8986,13 +9106,21 @@ type PerfectionistSortModules = []|[{
8986
9106
  }[]
8987
9107
  } | {
8988
9108
 
8989
- groupName?: string
9109
+ newlinesInside?: ("always" | "never")
8990
9110
 
8991
- type?: ("alphabetical" | "line-length" | "natural" | "unsorted")
9111
+ fallbackSort?: {
9112
+
9113
+ order?: ("asc" | "desc")
9114
+
9115
+ type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
9116
+ [k: string]: unknown | undefined
9117
+ }
8992
9118
 
8993
- order?: ("desc" | "asc")
9119
+ groupName?: string
8994
9120
 
8995
- newlinesInside?: ("always" | "never")
9121
+ order?: ("asc" | "desc")
9122
+
9123
+ type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
8996
9124
 
8997
9125
  modifiers?: ("async" | "declare" | "decorated" | "default" | "export")[]
8998
9126
 
@@ -9050,8 +9178,6 @@ type PerfectionistSortModules = []|[{
9050
9178
  // ----- perfectionist/sort-named-exports -----
9051
9179
  type PerfectionistSortNamedExports = []|[{
9052
9180
 
9053
- specialCharacters?: ("remove" | "trim" | "keep")
9054
-
9055
9181
  fallbackSort?: {
9056
9182
 
9057
9183
  order?: ("asc" | "desc")
@@ -9060,6 +9186,8 @@ type PerfectionistSortNamedExports = []|[{
9060
9186
  [k: string]: unknown | undefined
9061
9187
  }
9062
9188
 
9189
+ specialCharacters?: ("remove" | "trim" | "keep")
9190
+
9063
9191
  ignoreCase?: boolean
9064
9192
 
9065
9193
  alphabet?: string
@@ -9102,8 +9230,6 @@ type PerfectionistSortNamedExports = []|[{
9102
9230
  // ----- perfectionist/sort-named-imports -----
9103
9231
  type PerfectionistSortNamedImports = []|[{
9104
9232
 
9105
- specialCharacters?: ("remove" | "trim" | "keep")
9106
-
9107
9233
  fallbackSort?: {
9108
9234
 
9109
9235
  order?: ("asc" | "desc")
@@ -9112,6 +9238,8 @@ type PerfectionistSortNamedImports = []|[{
9112
9238
  [k: string]: unknown | undefined
9113
9239
  }
9114
9240
 
9241
+ specialCharacters?: ("remove" | "trim" | "keep")
9242
+
9115
9243
  ignoreCase?: boolean
9116
9244
 
9117
9245
  alphabet?: string
@@ -9154,8 +9282,6 @@ type PerfectionistSortNamedImports = []|[{
9154
9282
  // ----- perfectionist/sort-object-types -----
9155
9283
  type PerfectionistSortObjectTypes = {
9156
9284
 
9157
- specialCharacters?: ("remove" | "trim" | "keep")
9158
-
9159
9285
  fallbackSort?: {
9160
9286
 
9161
9287
  order?: ("asc" | "desc")
@@ -9164,6 +9290,8 @@ type PerfectionistSortObjectTypes = {
9164
9290
  [k: string]: unknown | undefined
9165
9291
  }
9166
9292
 
9293
+ specialCharacters?: ("remove" | "trim" | "keep")
9294
+
9167
9295
  ignoreCase?: boolean
9168
9296
 
9169
9297
  alphabet?: string
@@ -9177,19 +9305,36 @@ type PerfectionistSortObjectTypes = {
9177
9305
  [k: string]: (string | string[]) | undefined
9178
9306
  } | ({
9179
9307
 
9180
- groupName?: string
9308
+ newlinesInside?: ("always" | "never")
9181
9309
 
9182
- type?: ("alphabetical" | "line-length" | "natural" | "unsorted")
9310
+ fallbackSort?: {
9311
+
9312
+ order?: ("asc" | "desc")
9313
+
9314
+ type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
9315
+ sortBy?: ("name" | "value")
9316
+ [k: string]: unknown | undefined
9317
+ }
9183
9318
 
9184
- order?: ("desc" | "asc")
9319
+ groupName?: string
9185
9320
 
9186
- newlinesInside?: ("always" | "never")
9321
+ order?: ("asc" | "desc")
9322
+
9323
+ type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
9187
9324
  anyOf?: {
9188
9325
 
9189
9326
  modifiers?: ("optional" | "required" | "multiline")[]
9190
9327
 
9191
9328
  selector?: ("index-signature" | "member" | "method" | "multiline" | "property")
9192
9329
 
9330
+ elementValuePattern?: (({
9331
+ pattern?: string
9332
+ flags?: string
9333
+ } | string)[] | ({
9334
+ pattern?: string
9335
+ flags?: string
9336
+ } | string))
9337
+
9193
9338
  elementNamePattern?: (({
9194
9339
  pattern?: string
9195
9340
  flags?: string
@@ -9197,21 +9342,39 @@ type PerfectionistSortObjectTypes = {
9197
9342
  pattern?: string
9198
9343
  flags?: string
9199
9344
  } | string))
9345
+ sortBy?: ("name" | "value")
9200
9346
  }[]
9201
9347
  } | {
9202
9348
 
9203
- groupName?: string
9349
+ newlinesInside?: ("always" | "never")
9350
+
9351
+ fallbackSort?: {
9352
+
9353
+ order?: ("asc" | "desc")
9354
+
9355
+ type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
9356
+ sortBy?: ("name" | "value")
9357
+ [k: string]: unknown | undefined
9358
+ }
9204
9359
 
9205
- type?: ("alphabetical" | "line-length" | "natural" | "unsorted")
9360
+ groupName?: string
9206
9361
 
9207
- order?: ("desc" | "asc")
9362
+ order?: ("asc" | "desc")
9208
9363
 
9209
- newlinesInside?: ("always" | "never")
9364
+ type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
9210
9365
 
9211
9366
  modifiers?: ("optional" | "required" | "multiline")[]
9212
9367
 
9213
9368
  selector?: ("index-signature" | "member" | "method" | "multiline" | "property")
9214
9369
 
9370
+ elementValuePattern?: (({
9371
+ pattern?: string
9372
+ flags?: string
9373
+ } | string)[] | ({
9374
+ pattern?: string
9375
+ flags?: string
9376
+ } | string))
9377
+
9215
9378
  elementNamePattern?: (({
9216
9379
  pattern?: string
9217
9380
  flags?: string
@@ -9219,6 +9382,7 @@ type PerfectionistSortObjectTypes = {
9219
9382
  pattern?: string
9220
9383
  flags?: string
9221
9384
  } | string))
9385
+ sortBy?: ("name" | "value")
9222
9386
  })[])
9223
9387
  useConfigurationIf?: {
9224
9388
 
@@ -9275,6 +9439,7 @@ type PerfectionistSortObjectTypes = {
9275
9439
  pattern?: string
9276
9440
  flags?: string
9277
9441
  } | string))
9442
+ sortBy?: ("name" | "value")
9278
9443
 
9279
9444
  groups?: (string | string[] | {
9280
9445
 
@@ -9284,8 +9449,6 @@ type PerfectionistSortObjectTypes = {
9284
9449
  // ----- perfectionist/sort-objects -----
9285
9450
  type PerfectionistSortObjects = {
9286
9451
 
9287
- specialCharacters?: ("remove" | "trim" | "keep")
9288
-
9289
9452
  fallbackSort?: {
9290
9453
 
9291
9454
  order?: ("asc" | "desc")
@@ -9294,6 +9457,8 @@ type PerfectionistSortObjects = {
9294
9457
  [k: string]: unknown | undefined
9295
9458
  }
9296
9459
 
9460
+ specialCharacters?: ("remove" | "trim" | "keep")
9461
+
9297
9462
  ignoreCase?: boolean
9298
9463
 
9299
9464
  alphabet?: string
@@ -9312,13 +9477,21 @@ type PerfectionistSortObjects = {
9312
9477
  [k: string]: (string | string[]) | undefined
9313
9478
  } | ({
9314
9479
 
9315
- groupName?: string
9480
+ newlinesInside?: ("always" | "never")
9481
+
9482
+ fallbackSort?: {
9483
+
9484
+ order?: ("asc" | "desc")
9485
+
9486
+ type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
9487
+ [k: string]: unknown | undefined
9488
+ }
9316
9489
 
9317
- type?: ("alphabetical" | "line-length" | "natural" | "unsorted")
9490
+ groupName?: string
9318
9491
 
9319
- order?: ("desc" | "asc")
9492
+ order?: ("asc" | "desc")
9320
9493
 
9321
- newlinesInside?: ("always" | "never")
9494
+ type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
9322
9495
  anyOf?: {
9323
9496
 
9324
9497
  modifiers?: ("optional" | "required" | "multiline")[]
@@ -9343,13 +9516,21 @@ type PerfectionistSortObjects = {
9343
9516
  }[]
9344
9517
  } | {
9345
9518
 
9346
- groupName?: string
9519
+ newlinesInside?: ("always" | "never")
9520
+
9521
+ fallbackSort?: {
9522
+
9523
+ order?: ("asc" | "desc")
9524
+
9525
+ type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
9526
+ [k: string]: unknown | undefined
9527
+ }
9347
9528
 
9348
- type?: ("alphabetical" | "line-length" | "natural" | "unsorted")
9529
+ groupName?: string
9349
9530
 
9350
- order?: ("desc" | "asc")
9531
+ order?: ("asc" | "desc")
9351
9532
 
9352
- newlinesInside?: ("always" | "never")
9533
+ type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
9353
9534
 
9354
9535
  modifiers?: ("optional" | "required" | "multiline")[]
9355
9536
 
@@ -9439,8 +9620,6 @@ type PerfectionistSortObjects = {
9439
9620
  // ----- perfectionist/sort-sets -----
9440
9621
  type PerfectionistSortSets = {
9441
9622
 
9442
- specialCharacters?: ("remove" | "trim" | "keep")
9443
-
9444
9623
  fallbackSort?: {
9445
9624
 
9446
9625
  order?: ("asc" | "desc")
@@ -9449,6 +9628,8 @@ type PerfectionistSortSets = {
9449
9628
  [k: string]: unknown | undefined
9450
9629
  }
9451
9630
 
9631
+ specialCharacters?: ("remove" | "trim" | "keep")
9632
+
9452
9633
  ignoreCase?: boolean
9453
9634
 
9454
9635
  alphabet?: string
@@ -9463,13 +9644,21 @@ type PerfectionistSortSets = {
9463
9644
 
9464
9645
  customGroups?: ({
9465
9646
 
9466
- groupName?: string
9647
+ newlinesInside?: ("always" | "never")
9467
9648
 
9468
- type?: ("alphabetical" | "line-length" | "natural" | "unsorted")
9649
+ fallbackSort?: {
9650
+
9651
+ order?: ("asc" | "desc")
9652
+
9653
+ type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
9654
+ [k: string]: unknown | undefined
9655
+ }
9469
9656
 
9470
- order?: ("desc" | "asc")
9657
+ groupName?: string
9471
9658
 
9472
- newlinesInside?: ("always" | "never")
9659
+ order?: ("asc" | "desc")
9660
+
9661
+ type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
9473
9662
  anyOf?: {
9474
9663
 
9475
9664
  selector?: ("literal" | "spread")
@@ -9484,13 +9673,21 @@ type PerfectionistSortSets = {
9484
9673
  }[]
9485
9674
  } | {
9486
9675
 
9487
- groupName?: string
9676
+ newlinesInside?: ("always" | "never")
9488
9677
 
9489
- type?: ("alphabetical" | "line-length" | "natural" | "unsorted")
9678
+ fallbackSort?: {
9679
+
9680
+ order?: ("asc" | "desc")
9681
+
9682
+ type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
9683
+ [k: string]: unknown | undefined
9684
+ }
9490
9685
 
9491
- order?: ("desc" | "asc")
9686
+ groupName?: string
9492
9687
 
9493
- newlinesInside?: ("always" | "never")
9688
+ order?: ("asc" | "desc")
9689
+
9690
+ type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
9494
9691
 
9495
9692
  selector?: ("literal" | "spread")
9496
9693
 
@@ -9548,8 +9745,6 @@ type PerfectionistSortSets = {
9548
9745
  // ----- perfectionist/sort-switch-case -----
9549
9746
  type PerfectionistSortSwitchCase = []|[{
9550
9747
 
9551
- specialCharacters?: ("remove" | "trim" | "keep")
9552
-
9553
9748
  fallbackSort?: {
9554
9749
 
9555
9750
  order?: ("asc" | "desc")
@@ -9558,6 +9753,8 @@ type PerfectionistSortSwitchCase = []|[{
9558
9753
  [k: string]: unknown | undefined
9559
9754
  }
9560
9755
 
9756
+ specialCharacters?: ("remove" | "trim" | "keep")
9757
+
9561
9758
  ignoreCase?: boolean
9562
9759
 
9563
9760
  alphabet?: string
@@ -9571,8 +9768,6 @@ type PerfectionistSortSwitchCase = []|[{
9571
9768
  // ----- perfectionist/sort-union-types -----
9572
9769
  type PerfectionistSortUnionTypes = []|[{
9573
9770
 
9574
- specialCharacters?: ("remove" | "trim" | "keep")
9575
-
9576
9771
  fallbackSort?: {
9577
9772
 
9578
9773
  order?: ("asc" | "desc")
@@ -9581,6 +9776,8 @@ type PerfectionistSortUnionTypes = []|[{
9581
9776
  [k: string]: unknown | undefined
9582
9777
  }
9583
9778
 
9779
+ specialCharacters?: ("remove" | "trim" | "keep")
9780
+
9584
9781
  ignoreCase?: boolean
9585
9782
 
9586
9783
  alphabet?: string
@@ -9626,8 +9823,6 @@ type PerfectionistSortUnionTypes = []|[{
9626
9823
  // ----- perfectionist/sort-variable-declarations -----
9627
9824
  type PerfectionistSortVariableDeclarations = []|[{
9628
9825
 
9629
- specialCharacters?: ("remove" | "trim" | "keep")
9630
-
9631
9826
  fallbackSort?: {
9632
9827
 
9633
9828
  order?: ("asc" | "desc")
@@ -9636,6 +9831,8 @@ type PerfectionistSortVariableDeclarations = []|[{
9636
9831
  [k: string]: unknown | undefined
9637
9832
  }
9638
9833
 
9834
+ specialCharacters?: ("remove" | "trim" | "keep")
9835
+
9639
9836
  ignoreCase?: boolean
9640
9837
 
9641
9838
  alphabet?: string
@@ -10018,10 +10215,21 @@ type SvelteNoUnknownStyleDirectiveProperty = []|[{
10018
10215
  ignoreProperties?: [string, ...(string)[]]
10019
10216
  ignorePrefixed?: boolean
10020
10217
  }]
10218
+ // ----- svelte/no-unnecessary-state-wrap -----
10219
+ type SvelteNoUnnecessaryStateWrap = []|[{
10220
+ additionalReactiveClasses?: string[]
10221
+ allowReassign?: boolean
10222
+ }]
10021
10223
  // ----- svelte/no-unused-class-name -----
10022
10224
  type SvelteNoUnusedClassName = []|[{
10023
10225
  allowedClassNames?: string[]
10024
10226
  }]
10227
+ // ----- svelte/no-unused-props -----
10228
+ type SvelteNoUnusedProps = []|[{
10229
+ checkImportedTypes?: boolean
10230
+ ignoreTypePatterns?: string[]
10231
+ ignorePropertyPatterns?: string[]
10232
+ }]
10025
10233
  // ----- svelte/no-useless-mustaches -----
10026
10234
  type SvelteNoUselessMustaches = []|[{
10027
10235
  ignoreIncludesComment?: boolean
@@ -10035,6 +10243,7 @@ type SveltePreferClassDirective = []|[{
10035
10243
  type SveltePreferConst = []|[{
10036
10244
  destructuring?: ("any" | "all")
10037
10245
  ignoreReadBeforeAssign?: boolean
10246
+ excludedRunes?: string[]
10038
10247
  }]
10039
10248
  // ----- svelte/shorthand-attribute -----
10040
10249
  type SvelteShorthandAttribute = []|[{
@@ -10166,6 +10375,8 @@ type UnicornCatchErrorName = []|[{
10166
10375
  type UnicornConsistentFunctionScoping = []|[{
10167
10376
  checkArrowFunctions?: boolean
10168
10377
  }]
10378
+ // ----- unicorn/escape-case -----
10379
+ type UnicornEscapeCase = []|[("uppercase" | "lowercase")]
10169
10380
  // ----- unicorn/expiring-todo-comments -----
10170
10381
  type UnicornExpiringTodoComments = []|[{
10171
10382
  terms?: string[]
@@ -10250,6 +10461,10 @@ type UnicornNoUselessUndefined = []|[{
10250
10461
  checkArguments?: boolean
10251
10462
  checkArrowFunctionBody?: boolean
10252
10463
  }]
10464
+ // ----- unicorn/number-literal-case -----
10465
+ type UnicornNumberLiteralCase = []|[{
10466
+ hexadecimalValue?: ("uppercase" | "lowercase")
10467
+ }]
10253
10468
  // ----- unicorn/numeric-separators-style -----
10254
10469
  type UnicornNumericSeparatorsStyle = []|[{
10255
10470
  binary?: {