@lincy/eslint-config 7.1.0 → 7.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.mts CHANGED
@@ -13,12 +13,12 @@ interface RuleOptions {
13
13
  */
14
14
  'accessor-pairs'?: Linter.RuleEntry<AccessorPairs>;
15
15
  /**
16
- * Having line breaks styles to object, array and named imports
16
+ * Enforce consistent line breaks for chaining member access
17
17
  * @see https://github.com/antfu/eslint-plugin-antfu/blob/main/src/rules/consistent-chaining.md
18
18
  */
19
19
  'antfu/consistent-chaining'?: Linter.RuleEntry<AntfuConsistentChaining>;
20
20
  /**
21
- * Having line breaks styles to object, array and named imports
21
+ * Enforce consistent line breaks inside braces and parentheses
22
22
  * @see https://github.com/antfu/eslint-plugin-antfu/blob/main/src/rules/consistent-list-newline.md
23
23
  */
24
24
  'antfu/consistent-list-newline'?: Linter.RuleEntry<AntfuConsistentListNewline>;
@@ -44,22 +44,22 @@ interface RuleOptions {
44
44
  'antfu/indent-unindent'?: Linter.RuleEntry<AntfuIndentUnindent>;
45
45
  /**
46
46
  * Prevent importing modules in `dist` folder
47
- * @see https://github.com/antfu/eslint-plugin-antfu/blob/main/src/rules/no-import-dist.test.ts
47
+ * @see https://github.com/antfu/eslint-plugin-antfu/blob/main/src/rules/no-import-dist.md
48
48
  */
49
49
  'antfu/no-import-dist'?: Linter.RuleEntry<[]>;
50
50
  /**
51
51
  * Prevent importing modules in `node_modules` folder by relative or absolute path
52
- * @see https://github.com/antfu/eslint-plugin-antfu/blob/main/src/rules/no-import-node-modules-by-path.test.ts
52
+ * @see https://github.com/antfu/eslint-plugin-antfu/blob/main/src/rules/no-import-node-modules-by-path.md
53
53
  */
54
54
  'antfu/no-import-node-modules-by-path'?: Linter.RuleEntry<[]>;
55
55
  /**
56
56
  * Prevent using top-level await
57
- * @see https://github.com/antfu/eslint-plugin-antfu/blob/main/src/rules/no-top-level-await.test.ts
57
+ * @see https://github.com/antfu/eslint-plugin-antfu/blob/main/src/rules/no-top-level-await.md
58
58
  */
59
59
  'antfu/no-top-level-await'?: Linter.RuleEntry<[]>;
60
60
  /**
61
61
  * Do not use `exports =`
62
- * @see https://github.com/antfu/eslint-plugin-antfu/blob/main/src/rules/no-ts-export-equal.test.ts
62
+ * @see https://github.com/antfu/eslint-plugin-antfu/blob/main/src/rules/no-ts-export-equal.md
63
63
  */
64
64
  'antfu/no-ts-export-equal'?: Linter.RuleEntry<[]>;
65
65
  /**
@@ -221,8 +221,7 @@ interface RuleOptions {
221
221
  */
222
222
  'dot-notation'?: Linter.RuleEntry<DotNotation>;
223
223
  /**
224
- * Bans a list of dependencies from being used
225
- * @see https://github.com/es-tooling/eslint-plugin-depend/blob/main/docs/rules/ban-dependencies.md
224
+ * Disallow dependencies in favor of more performant or secure alternatives
226
225
  */
227
226
  'e18e/ban-dependencies'?: Linter.RuleEntry<E18EBanDependencies>;
228
227
  /**
@@ -2824,182 +2823,162 @@ interface RuleOptions {
2824
2823
  * @see https://eslint.org/docs/latest/rules/radix
2825
2824
  */
2826
2825
  'radix'?: Linter.RuleEntry<Radix>;
2826
+ 'react-refresh/only-export-components'?: Linter.RuleEntry<ReactRefreshOnlyExportComponents>;
2827
2827
  /**
2828
2828
  * Disallows DOM elements from using 'dangerouslySetInnerHTML'.
2829
2829
  * @see https://eslint-react.xyz/docs/rules/dom-no-dangerously-set-innerhtml
2830
2830
  */
2831
- 'react-dom/no-dangerously-set-innerhtml'?: Linter.RuleEntry<[]>;
2831
+ 'react/dom-no-dangerously-set-innerhtml'?: Linter.RuleEntry<[]>;
2832
2832
  /**
2833
2833
  * Disallows DOM elements from using 'dangerouslySetInnerHTML' and 'children' at the same time.
2834
2834
  * @see https://eslint-react.xyz/docs/rules/dom-no-dangerously-set-innerhtml-with-children
2835
2835
  */
2836
- 'react-dom/no-dangerously-set-innerhtml-with-children'?: Linter.RuleEntry<[]>;
2836
+ 'react/dom-no-dangerously-set-innerhtml-with-children'?: Linter.RuleEntry<[]>;
2837
2837
  /**
2838
2838
  * Disallows 'findDOMNode'.
2839
2839
  * @see https://eslint-react.xyz/docs/rules/dom-no-find-dom-node
2840
2840
  */
2841
- 'react-dom/no-find-dom-node'?: Linter.RuleEntry<[]>;
2841
+ 'react/dom-no-find-dom-node'?: Linter.RuleEntry<[]>;
2842
2842
  /**
2843
2843
  * Disallows 'flushSync'.
2844
2844
  * @see https://eslint-react.xyz/docs/rules/dom-no-flush-sync
2845
2845
  */
2846
- 'react-dom/no-flush-sync'?: Linter.RuleEntry<[]>;
2846
+ 'react/dom-no-flush-sync'?: Linter.RuleEntry<[]>;
2847
2847
  /**
2848
2848
  * Replaces usage of 'ReactDOM.hydrate()' with 'hydrateRoot()'.
2849
2849
  * @see https://eslint-react.xyz/docs/rules/dom-no-hydrate
2850
2850
  */
2851
- 'react-dom/no-hydrate'?: Linter.RuleEntry<[]>;
2851
+ 'react/dom-no-hydrate'?: Linter.RuleEntry<[]>;
2852
2852
  /**
2853
2853
  * Enforces an explicit 'type' attribute for 'button' elements.
2854
2854
  * @see https://eslint-react.xyz/docs/rules/dom-no-missing-button-type
2855
2855
  */
2856
- 'react-dom/no-missing-button-type'?: Linter.RuleEntry<[]>;
2856
+ 'react/dom-no-missing-button-type'?: Linter.RuleEntry<[]>;
2857
2857
  /**
2858
2858
  * Enforces an explicit 'sandbox' attribute for 'iframe' elements.
2859
2859
  * @see https://eslint-react.xyz/docs/rules/dom-no-missing-iframe-sandbox
2860
2860
  */
2861
- 'react-dom/no-missing-iframe-sandbox'?: Linter.RuleEntry<[]>;
2862
- /**
2863
- * Enforces the absence of a 'namespace' in React elements.
2864
- * @see https://eslint-react.xyz/docs/rules/dom-no-namespace
2865
- */
2866
- 'react-dom/no-namespace'?: Linter.RuleEntry<[]>;
2861
+ 'react/dom-no-missing-iframe-sandbox'?: Linter.RuleEntry<[]>;
2867
2862
  /**
2868
2863
  * Replaces usage of 'ReactDOM.render()' with 'createRoot(node).render()'.
2869
2864
  * @see https://eslint-react.xyz/docs/rules/dom-no-render
2870
2865
  */
2871
- 'react-dom/no-render'?: Linter.RuleEntry<[]>;
2866
+ 'react/dom-no-render'?: Linter.RuleEntry<[]>;
2872
2867
  /**
2873
2868
  * Disallows the return value of 'ReactDOM.render'.
2874
2869
  * @see https://eslint-react.xyz/docs/rules/dom-no-render-return-value
2875
2870
  */
2876
- 'react-dom/no-render-return-value'?: Linter.RuleEntry<[]>;
2871
+ 'react/dom-no-render-return-value'?: Linter.RuleEntry<[]>;
2877
2872
  /**
2878
2873
  * Disallows 'javascript:' URLs as attribute values.
2879
2874
  * @see https://eslint-react.xyz/docs/rules/dom-no-script-url
2880
2875
  */
2881
- 'react-dom/no-script-url'?: Linter.RuleEntry<[]>;
2876
+ 'react/dom-no-script-url'?: Linter.RuleEntry<[]>;
2882
2877
  /**
2883
2878
  * Disallows the use of string style prop in JSX. Use an object instead.
2884
2879
  * @see https://eslint-react.xyz/docs/rules/dom-no-string-style-prop
2885
2880
  */
2886
- 'react-dom/no-string-style-prop'?: Linter.RuleEntry<[]>;
2881
+ 'react/dom-no-string-style-prop'?: Linter.RuleEntry<[]>;
2887
2882
  /**
2888
2883
  * Disallows unknown 'DOM' properties.
2889
2884
  * @see https://eslint-react.xyz/docs/rules/dom-no-unknown-property
2890
2885
  */
2891
- 'react-dom/no-unknown-property'?: Linter.RuleEntry<ReactDomNoUnknownProperty>;
2886
+ 'react/dom-no-unknown-property'?: Linter.RuleEntry<ReactDomNoUnknownProperty>;
2892
2887
  /**
2893
2888
  * Enforces that the 'sandbox' attribute for 'iframe' elements is not set to unsafe combinations.
2894
2889
  * @see https://eslint-react.xyz/docs/rules/dom-no-unsafe-iframe-sandbox
2895
2890
  */
2896
- 'react-dom/no-unsafe-iframe-sandbox'?: Linter.RuleEntry<[]>;
2891
+ 'react/dom-no-unsafe-iframe-sandbox'?: Linter.RuleEntry<[]>;
2897
2892
  /**
2898
2893
  * Disallows 'target="_blank"' without 'rel="noreferrer noopener"'.
2899
2894
  * @see https://eslint-react.xyz/docs/rules/dom-no-unsafe-target-blank
2900
2895
  */
2901
- 'react-dom/no-unsafe-target-blank'?: Linter.RuleEntry<[]>;
2896
+ 'react/dom-no-unsafe-target-blank'?: Linter.RuleEntry<[]>;
2902
2897
  /**
2903
2898
  * Replaces usage of 'useFormState' with 'useActionState'.
2904
2899
  * @see https://eslint-react.xyz/docs/rules/dom-no-use-form-state
2905
2900
  */
2906
- 'react-dom/no-use-form-state'?: Linter.RuleEntry<[]>;
2901
+ 'react/dom-no-use-form-state'?: Linter.RuleEntry<[]>;
2907
2902
  /**
2908
2903
  * Disallows 'children' in void DOM elements.
2909
2904
  * @see https://eslint-react.xyz/docs/rules/dom-no-void-elements-with-children
2910
2905
  */
2911
- 'react-dom/no-void-elements-with-children'?: Linter.RuleEntry<[]>;
2906
+ 'react/dom-no-void-elements-with-children'?: Linter.RuleEntry<[]>;
2912
2907
  /**
2913
- * Enforces importing React DOM via a namespace import.
2914
- * @see https://eslint-react.xyz/docs/rules/dom-prefer-namespace-import
2915
- */
2916
- 'react-dom/prefer-namespace-import'?: Linter.RuleEntry<[]>;
2917
- /**
2918
- * Enforces the context name to be a valid component name with the suffix 'Context'.
2919
- * @see https://eslint-react.xyz/docs/rules/naming-convention-context-name
2908
+ * Validates usage of Error Boundaries instead of try/catch for errors in child components.
2909
+ * @see https://eslint-react.xyz/docs/rules/error-boundaries
2920
2910
  */
2921
- 'react-naming-convention/context-name'?: Linter.RuleEntry<[]>;
2911
+ 'react/error-boundaries'?: Linter.RuleEntry<[]>;
2922
2912
  /**
2923
- * Enforces identifier names assigned from 'useId' calls to be either 'id' or end with 'Id'.
2924
- * @see https://eslint-react.xyz/docs/rules/naming-convention-id-name
2913
+ * Verifies the list of dependencies for Hooks like 'useEffect' and similar.
2914
+ * @see https://github.com/facebook/react/issues/14920
2925
2915
  */
2926
- 'react-naming-convention/id-name'?: Linter.RuleEntry<[]>;
2916
+ 'react/exhaustive-deps'?: Linter.RuleEntry<ReactExhaustiveDeps>;
2927
2917
  /**
2928
- * Enforces identifier names assigned from 'useRef' calls to be either 'ref' or end with 'Ref'.
2929
- * @see https://eslint-react.xyz/docs/rules/naming-convention-ref-name
2918
+ * Validates against assignment/mutation of globals during render, part of ensuring that side effects must run outside of render.
2919
+ * @see https://eslint-react.xyz/docs/rules/globals
2930
2920
  */
2931
- 'react-naming-convention/ref-name'?: Linter.RuleEntry<[]>;
2932
- 'react-refresh/only-export-components'?: Linter.RuleEntry<ReactRefreshOnlyExportComponents>;
2921
+ 'react/globals'?: Linter.RuleEntry<[]>;
2933
2922
  /**
2934
- * Validates and transforms React Client/Server Function definitions.
2935
- * @see https://eslint-react.xyz/docs/rules/function-definition
2923
+ * Validates against mutating props, state, and other values that are immutable.
2924
+ * @see https://eslint-react.xyz/docs/rules/immutability
2936
2925
  */
2937
- 'react-rsc/function-definition'?: Linter.RuleEntry<[]>;
2926
+ 'react/immutability'?: Linter.RuleEntry<[]>;
2938
2927
  /**
2939
- * Enforces that every 'addEventListener' in a component or custom hook has a corresponding 'removeEventListener'.
2940
- * @see https://eslint-react.xyz/docs/rules/web-api-no-leaked-event-listener
2928
+ * Disallows passing 'children' as a prop.
2929
+ * @see https://eslint-react.xyz/docs/rules/no-children-prop
2941
2930
  */
2942
- 'react-web-api/no-leaked-event-listener'?: Linter.RuleEntry<[]>;
2931
+ 'react/jsx-no-children-prop'?: Linter.RuleEntry<[]>;
2943
2932
  /**
2944
- * Enforces that every 'setInterval' in a component or custom hook has a corresponding 'clearInterval'.
2945
- * @see https://eslint-react.xyz/docs/rules/web-api-no-leaked-interval
2933
+ * Disallows passing 'children' as a prop when children are also passed as nested content.
2934
+ * @see https://eslint-react.xyz/docs/rules/no-children-prop-with-children
2946
2935
  */
2947
- 'react-web-api/no-leaked-interval'?: Linter.RuleEntry<[]>;
2936
+ 'react/jsx-no-children-prop-with-children'?: Linter.RuleEntry<[]>;
2948
2937
  /**
2949
- * Enforces that every 'ResizeObserver' created in a component or custom hook has a corresponding 'ResizeObserver.disconnect()'.
2950
- * @see https://eslint-react.xyz/docs/rules/web-api-no-leaked-resize-observer
2938
+ * Prevents comment strings from being accidentally inserted into a JSX element's text nodes.
2939
+ * @see https://eslint-react.xyz/docs/rules/no-comment-textnodes
2951
2940
  */
2952
- 'react-web-api/no-leaked-resize-observer'?: Linter.RuleEntry<[]>;
2941
+ 'react/jsx-no-comment-textnodes'?: Linter.RuleEntry<[]>;
2953
2942
  /**
2954
- * Enforces that every 'setTimeout' in a component or custom hook has a corresponding 'clearTimeout'.
2955
- * @see https://eslint-react.xyz/docs/rules/web-api-no-leaked-timeout
2943
+ * Prevent patterns that cause deoptimization when using the automatic JSX runtime.
2944
+ * @see https://eslint-react.xyz/docs/rules/no-key-after-spread
2956
2945
  */
2957
- 'react-web-api/no-leaked-timeout'?: Linter.RuleEntry<[]>;
2946
+ 'react/jsx-no-key-after-spread'?: Linter.RuleEntry<[]>;
2958
2947
  /**
2959
- * Disallows higher order functions that define components or hooks inside them.
2960
- * @see https://eslint-react.xyz/docs/rules/component-hook-factories
2948
+ * Catches `$` before `{expr}` in JSX typically from template literal `${expr}` being copy-pasted into JSX without removing the `$`. The `$` "leaks" into the rendered output.
2949
+ * @see https://eslint-react.xyz/docs/rules/no-leaked-dollar
2961
2950
  */
2962
- 'react/component-hook-factories'?: Linter.RuleEntry<[]>;
2951
+ 'react/jsx-no-leaked-dollar'?: Linter.RuleEntry<[]>;
2963
2952
  /**
2964
- * Validates usage of Error Boundaries instead of try/catch for errors in child components.
2965
- * @see https://eslint-react.xyz/docs/rules/error-boundaries
2953
+ * Catches `;` at the start of JSX text nodes typically from accidentally placing a statement-ending `;` inside JSX. The `;` "leaks" into the rendered output.
2954
+ * @see https://eslint-react.xyz/docs/rules/no-leaked-semicolon
2966
2955
  */
2967
- 'react/error-boundaries'?: Linter.RuleEntry<[]>;
2956
+ 'react/jsx-no-leaked-semicolon'?: Linter.RuleEntry<[]>;
2968
2957
  /**
2969
- * Verifies the list of dependencies for Hooks like 'useEffect' and similar.
2970
- * @see https://github.com/facebook/react/issues/14920
2958
+ * Disallow JSX namespace syntax, as React does not support them.
2959
+ * @see https://eslint-react.xyz/docs/rules/no-namespace
2971
2960
  */
2972
- 'react/exhaustive-deps'?: Linter.RuleEntry<ReactExhaustiveDeps>;
2961
+ 'react/jsx-no-namespace'?: Linter.RuleEntry<[]>;
2973
2962
  /**
2974
- * Validates against mutating props, state, and other values that are immutable.
2975
- * @see https://eslint-react.xyz/docs/rules/immutability
2976
- */
2977
- 'react/immutability'?: Linter.RuleEntry<[]>;
2978
- /**
2979
- * Prevents unintentional '$' sign before expression.
2980
- * @see https://eslint-react.xyz/docs/rules/jsx-dollar
2981
- */
2982
- 'react/jsx-dollar'?: Linter.RuleEntry<[]>;
2983
- /**
2984
- * Enforces 'key' prop placement before spread props.
2985
- * @see https://eslint-react.xyz/docs/rules/jsx-key-before-spread
2963
+ * Disallows useless fragment elements.
2964
+ * @see https://eslint-react.xyz/docs/rules/no-useless-fragment
2986
2965
  */
2987
- 'react/jsx-key-before-spread'?: Linter.RuleEntry<[]>;
2966
+ 'react/jsx-no-useless-fragment'?: Linter.RuleEntry<ReactJsxNoUselessFragment>;
2988
2967
  /**
2989
- * Prevents comment strings (ex: beginning with '//' or '/*') from being accidentally inserted into a JSX element's text nodes.
2990
- * @see https://eslint-react.xyz/docs/rules/jsx-no-comment-textnodes
2968
+ * Enforces the context name to be a valid component name with the suffix 'Context'.
2969
+ * @see https://eslint-react.xyz/docs/rules/naming-convention-context-name
2991
2970
  */
2992
- 'react/jsx-no-comment-textnodes'?: Linter.RuleEntry<[]>;
2971
+ 'react/naming-convention-context-name'?: Linter.RuleEntry<[]>;
2993
2972
  /**
2994
- * Enforces shorthand syntax for boolean props.
2995
- * @see https://eslint-react.xyz/docs/rules/jsx-shorthand-boolean
2973
+ * Enforces identifier names assigned from 'useId' calls to be either 'id' or end with 'Id'.
2974
+ * @see https://eslint-react.xyz/docs/rules/naming-convention-id-name
2996
2975
  */
2997
- 'react/jsx-shorthand-boolean'?: Linter.RuleEntry<ReactJsxShorthandBoolean>;
2976
+ 'react/naming-convention-id-name'?: Linter.RuleEntry<[]>;
2998
2977
  /**
2999
- * Enforces shorthand syntax for fragment elements.
3000
- * @see https://eslint-react.xyz/docs/rules/jsx-shorthand-fragment
2978
+ * Enforces identifier names assigned from 'useRef' calls to be either 'ref' or end with 'Ref'.
2979
+ * @see https://eslint-react.xyz/docs/rules/naming-convention-ref-name
3001
2980
  */
3002
- 'react/jsx-shorthand-fragment'?: Linter.RuleEntry<ReactJsxShorthandFragment>;
2981
+ 'react/naming-convention-ref-name'?: Linter.RuleEntry<[]>;
3003
2982
  /**
3004
2983
  * Disallows accessing 'this.state' inside 'setState' calls.
3005
2984
  * @see https://eslint-react.xyz/docs/rules/no-access-state-in-setstate
@@ -3030,11 +3009,6 @@ interface RuleOptions {
3030
3009
  * @see https://eslint-react.xyz/docs/rules/no-children-only
3031
3010
  */
3032
3011
  'react/no-children-only'?: Linter.RuleEntry<[]>;
3033
- /**
3034
- * Disallows passing 'children' as a prop.
3035
- * @see https://eslint-react.xyz/docs/rules/no-children-prop
3036
- */
3037
- 'react/no-children-prop'?: Linter.RuleEntry<[]>;
3038
3012
  /**
3039
3013
  * Disallows the use of 'Children.toArray' from the 'react' package.
3040
3014
  * @see https://eslint-react.xyz/docs/rules/no-children-to-array
@@ -3136,15 +3110,10 @@ interface RuleOptions {
3136
3110
  */
3137
3111
  'react/no-nested-component-definitions'?: Linter.RuleEntry<[]>;
3138
3112
  /**
3139
- * Disallows nesting lazy component declarations inside other components.
3113
+ * Disallows nesting lazy component declarations inside other components or hooks.
3140
3114
  * @see https://eslint-react.xyz/docs/rules/no-nested-lazy-component-declarations
3141
3115
  */
3142
3116
  'react/no-nested-lazy-component-declarations'?: Linter.RuleEntry<[]>;
3143
- /**
3144
- * Disallows 'shouldComponentUpdate' when extending 'React.PureComponent'.
3145
- * @see https://eslint-react.xyz/docs/rules/no-redundant-should-component-update
3146
- */
3147
- 'react/no-redundant-should-component-update'?: Linter.RuleEntry<[]>;
3148
3117
  /**
3149
3118
  * Disallows calling 'this.setState' in 'componentDidMount' outside functions such as callbacks.
3150
3119
  * @see https://eslint-react.xyz/docs/rules/no-set-state-in-component-did-mount
@@ -3160,16 +3129,6 @@ interface RuleOptions {
3160
3129
  * @see https://eslint-react.xyz/docs/rules/no-set-state-in-component-will-update
3161
3130
  */
3162
3131
  'react/no-set-state-in-component-will-update'?: Linter.RuleEntry<[]>;
3163
- /**
3164
- * Disallows unnecessary usage of 'useCallback'.
3165
- * @see https://eslint-react.xyz/docs/rules/no-unnecessary-use-callback
3166
- */
3167
- 'react/no-unnecessary-use-callback'?: Linter.RuleEntry<[]>;
3168
- /**
3169
- * Disallows unnecessary usage of 'useMemo'.
3170
- * @see https://eslint-react.xyz/docs/rules/no-unnecessary-use-memo
3171
- */
3172
- 'react/no-unnecessary-use-memo'?: Linter.RuleEntry<[]>;
3173
3132
  /**
3174
3133
  * Enforces that a function with the 'use' prefix uses at least one Hook inside it.
3175
3134
  * @see https://eslint-react.xyz/docs/rules/no-unnecessary-use-prefix
@@ -3211,7 +3170,7 @@ interface RuleOptions {
3211
3170
  */
3212
3171
  'react/no-unused-props'?: Linter.RuleEntry<[]>;
3213
3172
  /**
3214
- * Warns about unused class component state.
3173
+ * Warns about state variables that are defined but never used, or only used in effects.
3215
3174
  * @see https://eslint-react.xyz/docs/rules/no-unused-state
3216
3175
  */
3217
3176
  'react/no-unused-state'?: Linter.RuleEntry<[]>;
@@ -3220,21 +3179,6 @@ interface RuleOptions {
3220
3179
  * @see https://eslint-react.xyz/docs/rules/no-use-context
3221
3180
  */
3222
3181
  'react/no-use-context'?: Linter.RuleEntry<[]>;
3223
- /**
3224
- * Disallows useless fragment elements.
3225
- * @see https://eslint-react.xyz/docs/rules/no-useless-fragment
3226
- */
3227
- 'react/no-useless-fragment'?: Linter.RuleEntry<ReactNoUselessFragment>;
3228
- /**
3229
- * Enforces destructuring assignment for component props and context.
3230
- * @see https://eslint-react.xyz/docs/rules/prefer-destructuring-assignment
3231
- */
3232
- 'react/prefer-destructuring-assignment'?: Linter.RuleEntry<[]>;
3233
- /**
3234
- * Enforces importing React via a namespace import.
3235
- * @see https://eslint-react.xyz/docs/rules/prefer-namespace-import
3236
- */
3237
- 'react/prefer-namespace-import'?: Linter.RuleEntry<[]>;
3238
3182
  /**
3239
3183
  * Validates that components and hooks are pure by checking that they do not call known-impure functions during render.
3240
3184
  * @see https://eslint-react.xyz/docs/rules/purity
@@ -3245,6 +3189,11 @@ interface RuleOptions {
3245
3189
  * @see https://eslint-react.xyz/docs/rules/refs
3246
3190
  */
3247
3191
  'react/refs'?: Linter.RuleEntry<[]>;
3192
+ /**
3193
+ * Validates and transforms React Client/Server Function definitions.
3194
+ * @see https://eslint-react.xyz/docs/rules/function-definition
3195
+ */
3196
+ 'react/rsc-function-definition'?: Linter.RuleEntry<[]>;
3248
3197
  /**
3249
3198
  * Enforces the Rules of Hooks.
3250
3199
  * @see https://react.dev/reference/rules/rules-of-hooks
@@ -3261,15 +3210,10 @@ interface RuleOptions {
3261
3210
  */
3262
3211
  'react/set-state-in-render'?: Linter.RuleEntry<[]>;
3263
3212
  /**
3264
- * Enforces the Rules of Props.
3265
- * @see https://eslint-react.xyz/docs/rules/unstable-rules-of-props
3213
+ * Validates that components are static, not recreated every render.
3214
+ * @see https://eslint-react.xyz/docs/rules/static-components
3266
3215
  */
3267
- 'react/unstable-rules-of-props'?: Linter.RuleEntry<[]>;
3268
- /**
3269
- * Enforces the Rules of State.
3270
- * @see https://eslint-react.xyz/docs/rules/unstable-rules-of-state
3271
- */
3272
- 'react/unstable-rules-of-state'?: Linter.RuleEntry<[]>;
3216
+ 'react/static-components'?: Linter.RuleEntry<[]>;
3273
3217
  /**
3274
3218
  * Validates against syntax that React Compiler does not support.
3275
3219
  * @see https://eslint-react.xyz/docs/rules/unsupported-syntax
@@ -3285,6 +3229,296 @@ interface RuleOptions {
3285
3229
  * @see https://eslint-react.xyz/docs/rules/use-state
3286
3230
  */
3287
3231
  'react/use-state'?: Linter.RuleEntry<ReactUseState>;
3232
+ /**
3233
+ * Enforces that every 'addEventListener' in a component or custom hook has a corresponding 'removeEventListener'.
3234
+ * @see https://eslint-react.xyz/docs/rules/web-api-no-leaked-event-listener
3235
+ */
3236
+ 'react/web-api-no-leaked-event-listener'?: Linter.RuleEntry<[]>;
3237
+ /**
3238
+ * Enforces that every 'fetch' in a component or custom hook has a corresponding 'AbortController' abort in the cleanup function.
3239
+ * @see https://eslint-react.xyz/docs/rules/web-api-no-leaked-fetch
3240
+ */
3241
+ 'react/web-api-no-leaked-fetch'?: Linter.RuleEntry<[]>;
3242
+ /**
3243
+ * Enforces that every 'setInterval' in a component or custom hook has a corresponding 'clearInterval'.
3244
+ * @see https://eslint-react.xyz/docs/rules/web-api-no-leaked-interval
3245
+ */
3246
+ 'react/web-api-no-leaked-interval'?: Linter.RuleEntry<[]>;
3247
+ /**
3248
+ * Enforces that every 'ResizeObserver' created in a component or custom hook has a corresponding 'ResizeObserver.disconnect()'.
3249
+ * @see https://eslint-react.xyz/docs/rules/web-api-no-leaked-resize-observer
3250
+ */
3251
+ 'react/web-api-no-leaked-resize-observer'?: Linter.RuleEntry<[]>;
3252
+ /**
3253
+ * Enforces that every 'setTimeout' in a component or custom hook has a corresponding 'clearTimeout'.
3254
+ * @see https://eslint-react.xyz/docs/rules/web-api-no-leaked-timeout
3255
+ */
3256
+ 'react/web-api-no-leaked-timeout'?: Linter.RuleEntry<[]>;
3257
+ /**
3258
+ * Validates usage of Error Boundaries instead of try/catch for errors in child components.
3259
+ * @see https://eslint-react.xyz/docs/rules/error-boundaries
3260
+ */
3261
+ 'react/x-error-boundaries'?: Linter.RuleEntry<[]>;
3262
+ /**
3263
+ * Verifies the list of dependencies for Hooks like 'useEffect' and similar.
3264
+ * @see https://github.com/facebook/react/issues/14920
3265
+ */
3266
+ 'react/x-exhaustive-deps'?: Linter.RuleEntry<ReactXExhaustiveDeps>;
3267
+ /**
3268
+ * Validates against assignment/mutation of globals during render, part of ensuring that side effects must run outside of render.
3269
+ * @see https://eslint-react.xyz/docs/rules/globals
3270
+ */
3271
+ 'react/x-globals'?: Linter.RuleEntry<[]>;
3272
+ /**
3273
+ * Validates against mutating props, state, and other values that are immutable.
3274
+ * @see https://eslint-react.xyz/docs/rules/immutability
3275
+ */
3276
+ 'react/x-immutability'?: Linter.RuleEntry<[]>;
3277
+ /**
3278
+ * Disallows accessing 'this.state' inside 'setState' calls.
3279
+ * @see https://eslint-react.xyz/docs/rules/no-access-state-in-setstate
3280
+ */
3281
+ 'react/x-no-access-state-in-setstate'?: Linter.RuleEntry<[]>;
3282
+ /**
3283
+ * Disallows using an item's index in the array as its key.
3284
+ * @see https://eslint-react.xyz/docs/rules/no-array-index-key
3285
+ */
3286
+ 'react/x-no-array-index-key'?: Linter.RuleEntry<[]>;
3287
+ /**
3288
+ * Disallows the use of 'Children.count' from the 'react' package.
3289
+ * @see https://eslint-react.xyz/docs/rules/no-children-count
3290
+ */
3291
+ 'react/x-no-children-count'?: Linter.RuleEntry<[]>;
3292
+ /**
3293
+ * Disallows the use of 'Children.forEach' from the 'react' package.
3294
+ * @see https://eslint-react.xyz/docs/rules/no-children-for-each
3295
+ */
3296
+ 'react/x-no-children-for-each'?: Linter.RuleEntry<[]>;
3297
+ /**
3298
+ * Disallows the use of 'Children.map' from the 'react' package.
3299
+ * @see https://eslint-react.xyz/docs/rules/no-children-map
3300
+ */
3301
+ 'react/x-no-children-map'?: Linter.RuleEntry<[]>;
3302
+ /**
3303
+ * Disallows the use of 'Children.only' from the 'react' package.
3304
+ * @see https://eslint-react.xyz/docs/rules/no-children-only
3305
+ */
3306
+ 'react/x-no-children-only'?: Linter.RuleEntry<[]>;
3307
+ /**
3308
+ * Disallows the use of 'Children.toArray' from the 'react' package.
3309
+ * @see https://eslint-react.xyz/docs/rules/no-children-to-array
3310
+ */
3311
+ 'react/x-no-children-to-array'?: Linter.RuleEntry<[]>;
3312
+ /**
3313
+ * Disallows class components except for error boundaries.
3314
+ * @see https://eslint-react.xyz/docs/rules/no-class-component
3315
+ */
3316
+ 'react/x-no-class-component'?: Linter.RuleEntry<[]>;
3317
+ /**
3318
+ * Disallows 'cloneElement'.
3319
+ * @see https://eslint-react.xyz/docs/rules/no-clone-element
3320
+ */
3321
+ 'react/x-no-clone-element'?: Linter.RuleEntry<[]>;
3322
+ /**
3323
+ * Replaces usage of 'componentWillMount' with 'UNSAFE_componentWillMount'.
3324
+ * @see https://eslint-react.xyz/docs/rules/no-component-will-mount
3325
+ */
3326
+ 'react/x-no-component-will-mount'?: Linter.RuleEntry<[]>;
3327
+ /**
3328
+ * Replaces usage of 'componentWillReceiveProps' with 'UNSAFE_componentWillReceiveProps'.
3329
+ * @see https://eslint-react.xyz/docs/rules/no-component-will-receive-props
3330
+ */
3331
+ 'react/x-no-component-will-receive-props'?: Linter.RuleEntry<[]>;
3332
+ /**
3333
+ * Replaces usage of 'componentWillUpdate' with 'UNSAFE_componentWillUpdate'.
3334
+ * @see https://eslint-react.xyz/docs/rules/no-component-will-update
3335
+ */
3336
+ 'react/x-no-component-will-update'?: Linter.RuleEntry<[]>;
3337
+ /**
3338
+ * Replaces usage of '<Context.Provider>' with '<Context>'.
3339
+ * @see https://eslint-react.xyz/docs/rules/no-context-provider
3340
+ */
3341
+ 'react/x-no-context-provider'?: Linter.RuleEntry<[]>;
3342
+ /**
3343
+ * Disallows 'createRef' in function components.
3344
+ * @see https://eslint-react.xyz/docs/rules/no-create-ref
3345
+ */
3346
+ 'react/x-no-create-ref'?: Linter.RuleEntry<[]>;
3347
+ /**
3348
+ * Disallows direct mutation of 'this.state'.
3349
+ * @see https://eslint-react.xyz/docs/rules/no-direct-mutation-state
3350
+ */
3351
+ 'react/x-no-direct-mutation-state'?: Linter.RuleEntry<[]>;
3352
+ /**
3353
+ * Prevents duplicate 'key' props on sibling elements when rendering lists.
3354
+ * @see https://eslint-react.xyz/docs/rules/no-duplicate-key
3355
+ */
3356
+ 'react/x-no-duplicate-key'?: Linter.RuleEntry<[]>;
3357
+ /**
3358
+ * Replaces usage of 'forwardRef' with passing 'ref' as a prop.
3359
+ * @see https://eslint-react.xyz/docs/rules/no-forward-ref
3360
+ */
3361
+ 'react/x-no-forward-ref'?: Linter.RuleEntry<[]>;
3362
+ /**
3363
+ * Prevents implicitly passing the 'children' prop to components.
3364
+ * @see https://eslint-react.xyz/docs/rules/no-implicit-children
3365
+ */
3366
+ 'react/x-no-implicit-children'?: Linter.RuleEntry<[]>;
3367
+ /**
3368
+ * Prevents implicitly passing the 'key' prop to components.
3369
+ * @see https://eslint-react.xyz/docs/rules/no-implicit-key
3370
+ */
3371
+ 'react/x-no-implicit-key'?: Linter.RuleEntry<[]>;
3372
+ /**
3373
+ * Prevents implicitly passing the 'ref' prop to components.
3374
+ * @see https://eslint-react.xyz/docs/rules/no-implicit-ref
3375
+ */
3376
+ 'react/x-no-implicit-ref'?: Linter.RuleEntry<[]>;
3377
+ /**
3378
+ * Prevents problematic leaked values from being rendered.
3379
+ * @see https://eslint-react.xyz/docs/rules/no-leaked-conditional-rendering
3380
+ */
3381
+ 'react/x-no-leaked-conditional-rendering'?: Linter.RuleEntry<[]>;
3382
+ /**
3383
+ * Enforces that all components have a 'displayName' that can be used in DevTools.
3384
+ * @see https://eslint-react.xyz/docs/rules/no-missing-component-display-name
3385
+ */
3386
+ 'react/x-no-missing-component-display-name'?: Linter.RuleEntry<[]>;
3387
+ /**
3388
+ * Enforces that all contexts have a 'displayName' that can be used in DevTools.
3389
+ * @see https://eslint-react.xyz/docs/rules/no-missing-context-display-name
3390
+ */
3391
+ 'react/x-no-missing-context-display-name'?: Linter.RuleEntry<[]>;
3392
+ /**
3393
+ * Disallows missing 'key' on items in list rendering.
3394
+ * @see https://eslint-react.xyz/docs/rules/no-missing-key
3395
+ */
3396
+ 'react/x-no-missing-key'?: Linter.RuleEntry<[]>;
3397
+ /**
3398
+ * Prevents incorrect usage of 'captureOwnerStack'.
3399
+ * @see https://eslint-react.xyz/docs/rules/no-misused-capture-owner-stack
3400
+ */
3401
+ 'react/x-no-misused-capture-owner-stack'?: Linter.RuleEntry<[]>;
3402
+ /**
3403
+ * Disallows nesting component definitions inside other components.
3404
+ * @see https://eslint-react.xyz/docs/rules/no-nested-component-definitions
3405
+ */
3406
+ 'react/x-no-nested-component-definitions'?: Linter.RuleEntry<[]>;
3407
+ /**
3408
+ * Disallows nesting lazy component declarations inside other components or hooks.
3409
+ * @see https://eslint-react.xyz/docs/rules/no-nested-lazy-component-declarations
3410
+ */
3411
+ 'react/x-no-nested-lazy-component-declarations'?: Linter.RuleEntry<[]>;
3412
+ /**
3413
+ * Disallows calling 'this.setState' in 'componentDidMount' outside functions such as callbacks.
3414
+ * @see https://eslint-react.xyz/docs/rules/no-set-state-in-component-did-mount
3415
+ */
3416
+ 'react/x-no-set-state-in-component-did-mount'?: Linter.RuleEntry<[]>;
3417
+ /**
3418
+ * Disallows calling 'this.setState' in 'componentDidUpdate' outside functions such as callbacks.
3419
+ * @see https://eslint-react.xyz/docs/rules/no-set-state-in-component-did-update
3420
+ */
3421
+ 'react/x-no-set-state-in-component-did-update'?: Linter.RuleEntry<[]>;
3422
+ /**
3423
+ * Disallows calling 'this.setState' in 'componentWillUpdate' outside functions such as callbacks.
3424
+ * @see https://eslint-react.xyz/docs/rules/no-set-state-in-component-will-update
3425
+ */
3426
+ 'react/x-no-set-state-in-component-will-update'?: Linter.RuleEntry<[]>;
3427
+ /**
3428
+ * Enforces that a function with the 'use' prefix uses at least one Hook inside it.
3429
+ * @see https://eslint-react.xyz/docs/rules/no-unnecessary-use-prefix
3430
+ */
3431
+ 'react/x-no-unnecessary-use-prefix'?: Linter.RuleEntry<[]>;
3432
+ /**
3433
+ * Warns about the use of 'UNSAFE_componentWillMount' in class components.
3434
+ * @see https://eslint-react.xyz/docs/rules/no-unsafe-component-will-mount
3435
+ */
3436
+ 'react/x-no-unsafe-component-will-mount'?: Linter.RuleEntry<[]>;
3437
+ /**
3438
+ * Warns about the use of 'UNSAFE_componentWillReceiveProps' in class components.
3439
+ * @see https://eslint-react.xyz/docs/rules/no-unsafe-component-will-receive-props
3440
+ */
3441
+ 'react/x-no-unsafe-component-will-receive-props'?: Linter.RuleEntry<[]>;
3442
+ /**
3443
+ * Warns about the use of 'UNSAFE_componentWillUpdate' in class components.
3444
+ * @see https://eslint-react.xyz/docs/rules/no-unsafe-component-will-update
3445
+ */
3446
+ 'react/x-no-unsafe-component-will-update'?: Linter.RuleEntry<[]>;
3447
+ /**
3448
+ * Prevents non-stable values (i.e., object literals) from being used as a value for 'Context.Provider'.
3449
+ * @see https://eslint-react.xyz/docs/rules/no-unstable-context-value
3450
+ */
3451
+ 'react/x-no-unstable-context-value'?: Linter.RuleEntry<[]>;
3452
+ /**
3453
+ * Prevents using referential-type values as default props in object destructuring.
3454
+ * @see https://eslint-react.xyz/docs/rules/no-unstable-default-props
3455
+ */
3456
+ 'react/x-no-unstable-default-props'?: Linter.RuleEntry<ReactXNoUnstableDefaultProps>;
3457
+ /**
3458
+ * Warns about unused class component methods and properties.
3459
+ * @see https://eslint-react.xyz/docs/rules/no-unused-class-component-members
3460
+ */
3461
+ 'react/x-no-unused-class-component-members'?: Linter.RuleEntry<[]>;
3462
+ /**
3463
+ * Warns about component props that are defined but never used.
3464
+ * @see https://eslint-react.xyz/docs/rules/no-unused-props
3465
+ */
3466
+ 'react/x-no-unused-props'?: Linter.RuleEntry<[]>;
3467
+ /**
3468
+ * Warns about state variables that are defined but never used, or only used in effects.
3469
+ * @see https://eslint-react.xyz/docs/rules/no-unused-state
3470
+ */
3471
+ 'react/x-no-unused-state'?: Linter.RuleEntry<[]>;
3472
+ /**
3473
+ * Replaces usage of 'useContext' with 'use'.
3474
+ * @see https://eslint-react.xyz/docs/rules/no-use-context
3475
+ */
3476
+ 'react/x-no-use-context'?: Linter.RuleEntry<[]>;
3477
+ /**
3478
+ * Validates that components and hooks are pure by checking that they do not call known-impure functions during render.
3479
+ * @see https://eslint-react.xyz/docs/rules/purity
3480
+ */
3481
+ 'react/x-purity'?: Linter.RuleEntry<[]>;
3482
+ /**
3483
+ * Validates correct usage of refs by checking that 'ref.current' is not read or written during render.
3484
+ * @see https://eslint-react.xyz/docs/rules/refs
3485
+ */
3486
+ 'react/x-refs'?: Linter.RuleEntry<[]>;
3487
+ /**
3488
+ * Enforces the Rules of Hooks.
3489
+ * @see https://react.dev/reference/rules/rules-of-hooks
3490
+ */
3491
+ 'react/x-rules-of-hooks'?: Linter.RuleEntry<ReactXRulesOfHooks>;
3492
+ /**
3493
+ * Validates against setting state synchronously in an effect, which can lead to re-renders that degrade performance.
3494
+ * @see https://eslint-react.xyz/docs/rules/set-state-in-effect
3495
+ */
3496
+ 'react/x-set-state-in-effect'?: Linter.RuleEntry<[]>;
3497
+ /**
3498
+ * Validates against unconditionally setting state during render, which can trigger additional renders and potential infinite render loops.
3499
+ * @see https://eslint-react.xyz/docs/rules/set-state-in-render
3500
+ */
3501
+ 'react/x-set-state-in-render'?: Linter.RuleEntry<[]>;
3502
+ /**
3503
+ * Validates that components are static, not recreated every render.
3504
+ * @see https://eslint-react.xyz/docs/rules/static-components
3505
+ */
3506
+ 'react/x-static-components'?: Linter.RuleEntry<[]>;
3507
+ /**
3508
+ * Validates against syntax that React Compiler does not support.
3509
+ * @see https://eslint-react.xyz/docs/rules/unsupported-syntax
3510
+ */
3511
+ 'react/x-unsupported-syntax'?: Linter.RuleEntry<[]>;
3512
+ /**
3513
+ * Validates that 'useMemo' is called with a callback that returns a value.
3514
+ * @see https://eslint-react.xyz/docs/rules/use-memo
3515
+ */
3516
+ 'react/x-use-memo'?: Linter.RuleEntry<[]>;
3517
+ /**
3518
+ * Enforces correct usage of 'useState', including destructuring, symmetric naming of the value and setter, and wrapping expensive initializers in a lazy initializer function.
3519
+ * @see https://eslint-react.xyz/docs/rules/use-state
3520
+ */
3521
+ 'react/x-use-state'?: Linter.RuleEntry<ReactXUseState>;
3288
3522
  /**
3289
3523
  * disallow confusing quantifiers
3290
3524
  * @see https://ota-meshi.github.io/eslint-plugin-regexp/rules/confusing-quantifier.html
@@ -4428,7 +4662,7 @@ interface RuleOptions {
4428
4662
  */
4429
4663
  'test/no-mocks-import'?: Linter.RuleEntry<[]>;
4430
4664
  /**
4431
- * disallow .only blocks in tests
4665
+ * disallow focused/only tests
4432
4666
  * @see https://github.com/levibuzolic/eslint-plugin-no-only-tests
4433
4667
  */
4434
4668
  'test/no-only-tests'?: Linter.RuleEntry<TestNoOnlyTests>;
@@ -4553,7 +4787,7 @@ interface RuleOptions {
4553
4787
  */
4554
4788
  'test/prefer-expect-resolves'?: Linter.RuleEntry<[]>;
4555
4789
  /**
4556
- * enforce using `expectTypeOf` instead of `expect(typeof ...)`
4790
+ * enforce using `expect(...).toBeTypeOf(...)` instead of `expect(typeof ...).toBe(...)`
4557
4791
  * @see https://github.com/vitest-dev/eslint-plugin-vitest/blob/main/docs/rules/prefer-expect-type-of.md
4558
4792
  */
4559
4793
  'test/prefer-expect-type-of'?: Linter.RuleEntry<[]>;
@@ -9825,7 +10059,6 @@ type NodeNoUnpublishedBin = [] | [{
9825
10059
  exclude?: string[];
9826
10060
  replace: [string, string];
9827
10061
  })[]]);
9828
- [k: string]: unknown | undefined;
9829
10062
  }]; // ----- node/no-unpublished-import -----
9830
10063
  type NodeNoUnpublishedImport = [] | [{
9831
10064
  allowModules?: string[];
@@ -9879,7 +10112,7 @@ type NodeNoUnsupportedFeaturesEsSyntax = [] | [{
9879
10112
  type NodeNoUnsupportedFeaturesNodeBuiltins = [] | [{
9880
10113
  version?: string;
9881
10114
  allowExperimental?: boolean;
9882
- ignores?: ("__filename" | "__dirname" | "require" | "require.cache" | "require.extensions" | "require.main" | "require.resolve" | "require.resolve.paths" | "module" | "module.children" | "module.exports" | "module.filename" | "module.id" | "module.isPreloading" | "module.loaded" | "module.parent" | "module.path" | "module.paths" | "module.require" | "exports" | "AbortController" | "AbortSignal" | "AbortSignal.abort" | "AbortSignal.timeout" | "AbortSignal.any" | "DOMException" | "FormData" | "Headers" | "MessageEvent" | "Navigator" | "Request" | "Response" | "WebAssembly" | "WebSocket" | "fetch" | "global" | "queueMicrotask" | "navigator" | "navigator.hardwareConcurrency" | "navigator.language" | "navigator.languages" | "navigator.platform" | "navigator.userAgent" | "structuredClone" | "localStorage" | "sessionStorage" | "Storage" | "Blob" | "new Buffer()" | "Buffer" | "Buffer.alloc" | "Buffer.allocUnsafe" | "Buffer.allocUnsafeSlow" | "Buffer.byteLength" | "Buffer.compare" | "Buffer.concat" | "Buffer.copyBytesFrom" | "Buffer.from" | "Buffer.isBuffer" | "Buffer.isEncoding" | "File" | "atob" | "btoa" | "console" | "console.profile" | "console.profileEnd" | "console.timeStamp" | "console.Console" | "console.assert" | "console.clear" | "console.count" | "console.countReset" | "console.debug" | "console.dir" | "console.dirxml" | "console.error" | "console.group" | "console.groupCollapsed" | "console.groupEnd" | "console.info" | "console.log" | "console.table" | "console.time" | "console.timeEnd" | "console.timeLog" | "console.trace" | "console.warn" | "crypto" | "crypto.subtle" | "crypto.subtle.decrypt" | "crypto.subtle.deriveBits" | "crypto.subtle.deriveKey" | "crypto.subtle.digest" | "crypto.subtle.encrypt" | "crypto.subtle.exportKey" | "crypto.subtle.generateKey" | "crypto.subtle.importKey" | "crypto.subtle.sign" | "crypto.subtle.unwrapKey" | "crypto.subtle.verify" | "crypto.subtle.wrapKey" | "crypto.getRandomValues" | "crypto.randomUUID" | "Crypto" | "CryptoKey" | "SubtleCrypto" | "CloseEvent" | "CustomEvent" | "Event" | "EventSource" | "EventTarget" | "PerformanceEntry" | "PerformanceMark" | "PerformanceMeasure" | "PerformanceObserver" | "PerformanceObserverEntryList" | "PerformanceResourceTiming" | "performance" | "performance.clearMarks" | "performance.clearMeasures" | "performance.clearResourceTimings" | "performance.eventLoopUtilization" | "performance.getEntries" | "performance.getEntriesByName" | "performance.getEntriesByType" | "performance.mark" | "performance.markResourceTiming" | "performance.measure" | "performance.nodeTiming" | "performance.nodeTiming.bootstrapComplete" | "performance.nodeTiming.environment" | "performance.nodeTiming.idleTime" | "performance.nodeTiming.loopExit" | "performance.nodeTiming.loopStart" | "performance.nodeTiming.nodeStart" | "performance.nodeTiming.uvMetricsInfo" | "performance.nodeTiming.v8Start" | "performance.now" | "performance.onresourcetimingbufferfull" | "performance.setResourceTimingBufferSize" | "performance.timeOrigin" | "performance.timerify" | "performance.toJSON" | "process" | "process.allowedNodeEnvironmentFlags" | "process.availableMemory" | "process.arch" | "process.argv" | "process.argv0" | "process.channel" | "process.config" | "process.connected" | "process.debugPort" | "process.env" | "process.execArgv" | "process.execPath" | "process.execve" | "process.exitCode" | "process.features.cached_builtins" | "process.features.debug" | "process.features.inspector" | "process.features.ipv6" | "process.features.require_module" | "process.features.tls" | "process.features.tls_alpn" | "process.features.tls_ocsp" | "process.features.tls_sni" | "process.features.typescript" | "process.features.uv" | "process.finalization.register" | "process.finalization.registerBeforeExit" | "process.finalization.unregister" | "process.getBuiltinModule" | "process.mainModule" | "process.noDeprecation" | "process.permission" | "process.pid" | "process.platform" | "process.ppid" | "process.ref" | "process.release" | "process.report" | "process.report.excludeEnv" | "process.sourceMapsEnabled" | "process.stdin" | "process.stdin.isRaw" | "process.stdin.isTTY" | "process.stdin.setRawMode" | "process.stdout" | "process.stdout.clearLine" | "process.stdout.clearScreenDown" | "process.stdout.columns" | "process.stdout.cursorTo" | "process.stdout.getColorDepth" | "process.stdout.getWindowSize" | "process.stdout.hasColors" | "process.stdout.isTTY" | "process.stdout.moveCursor" | "process.stdout.rows" | "process.stderr" | "process.stderr.clearLine" | "process.stderr.clearScreenDown" | "process.stderr.columns" | "process.stderr.cursorTo" | "process.stderr.getColorDepth" | "process.stderr.getWindowSize" | "process.stderr.hasColors" | "process.stderr.isTTY" | "process.stderr.moveCursor" | "process.stderr.rows" | "process.threadCpuUsage" | "process.throwDeprecation" | "process.title" | "process.traceDeprecation" | "process.version" | "process.versions" | "process.abort" | "process.chdir" | "process.constrainedMemory" | "process.cpuUsage" | "process.cwd" | "process.disconnect" | "process.dlopen" | "process.emitWarning" | "process.exit" | "process.getActiveResourcesInfo" | "process.getegid" | "process.geteuid" | "process.getgid" | "process.getgroups" | "process.getuid" | "process.hasUncaughtExceptionCaptureCallback" | "process.hrtime" | "process.hrtime.bigint" | "process.initgroups" | "process.kill" | "process.loadEnvFile" | "process.memoryUsage" | "process.rss" | "process.nextTick" | "process.resourceUsage" | "process.send" | "process.setegid" | "process.seteuid" | "process.setgid" | "process.setgroups" | "process.setuid" | "process.setSourceMapsEnabled" | "process.setUncaughtExceptionCaptureCallback" | "process.umask" | "process.unref" | "process.uptime" | "ReadableStream" | "ReadableStream.from" | "ReadableStreamDefaultReader" | "ReadableStreamBYOBReader" | "ReadableStreamDefaultController" | "ReadableByteStreamController" | "ReadableStreamBYOBRequest" | "WritableStream" | "WritableStreamDefaultWriter" | "WritableStreamDefaultController" | "TransformStream" | "TransformStreamDefaultController" | "ByteLengthQueuingStrategy" | "CountQueuingStrategy" | "TextEncoderStream" | "TextDecoderStream" | "CompressionStream" | "DecompressionStream" | "setInterval" | "clearInterval" | "setTimeout" | "clearTimeout" | "setImmediate" | "clearImmediate" | "URL" | "URL.canParse" | "URL.createObjectURL" | "URL.revokeObjectURL" | "URLSearchParams" | "TextDecoder" | "TextEncoder" | "BroadcastChannel" | "MessageChannel" | "MessagePort" | "assert" | "assert.Assert" | "assert.assert" | "assert.deepEqual" | "assert.deepStrictEqual" | "assert.doesNotMatch" | "assert.doesNotReject" | "assert.doesNotThrow" | "assert.equal" | "assert.fail" | "assert.ifError" | "assert.match" | "assert.notDeepEqual" | "assert.notDeepStrictEqual" | "assert.notEqual" | "assert.notStrictEqual" | "assert.ok" | "assert.partialDeepStrictEqual" | "assert.rejects" | "assert.strictEqual" | "assert.throws" | "assert.CallTracker" | "assert.strict" | "assert.strict.Assert" | "assert.strict.assert" | "assert.strict.deepEqual" | "assert.strict.deepStrictEqual" | "assert.strict.doesNotMatch" | "assert.strict.doesNotReject" | "assert.strict.doesNotThrow" | "assert.strict.equal" | "assert.strict.fail" | "assert.strict.ifError" | "assert.strict.match" | "assert.strict.notDeepEqual" | "assert.strict.notDeepStrictEqual" | "assert.strict.notEqual" | "assert.strict.notStrictEqual" | "assert.strict.ok" | "assert.strict.partialDeepStrictEqual" | "assert.strict.rejects" | "assert.strict.strictEqual" | "assert.strict.throws" | "assert.strict.CallTracker" | "assert/strict" | "assert/strict.Assert" | "assert/strict.assert" | "assert/strict.deepEqual" | "assert/strict.deepStrictEqual" | "assert/strict.doesNotMatch" | "assert/strict.doesNotReject" | "assert/strict.doesNotThrow" | "assert/strict.equal" | "assert/strict.fail" | "assert/strict.ifError" | "assert/strict.match" | "assert/strict.notDeepEqual" | "assert/strict.notDeepStrictEqual" | "assert/strict.notEqual" | "assert/strict.notStrictEqual" | "assert/strict.ok" | "assert/strict.partialDeepStrictEqual" | "assert/strict.rejects" | "assert/strict.strictEqual" | "assert/strict.throws" | "assert/strict.CallTracker" | "async_hooks" | "async_hooks.createHook" | "async_hooks.executionAsyncResource" | "async_hooks.executionAsyncId" | "async_hooks.triggerAsyncId" | "async_hooks.AsyncLocalStorage" | "async_hooks.AsyncLocalStorage.bind" | "async_hooks.AsyncLocalStorage.snapshot" | "async_hooks.AsyncResource" | "async_hooks.AsyncResource.bind" | "buffer" | "buffer.constants" | "buffer.INSPECT_MAX_BYTES" | "buffer.kMaxLength" | "buffer.kStringMaxLength" | "buffer.atob" | "buffer.btoa" | "buffer.isAscii" | "buffer.isUtf8" | "buffer.resolveObjectURL" | "buffer.transcode" | "buffer.SlowBuffer" | "buffer.Blob" | "new buffer.Buffer()" | "buffer.Buffer" | "buffer.Buffer.alloc" | "buffer.Buffer.allocUnsafe" | "buffer.Buffer.allocUnsafeSlow" | "buffer.Buffer.byteLength" | "buffer.Buffer.compare" | "buffer.Buffer.concat" | "buffer.Buffer.copyBytesFrom" | "buffer.Buffer.from" | "buffer.Buffer.isBuffer" | "buffer.Buffer.isEncoding" | "buffer.File" | "child_process" | "child_process.exec" | "child_process.execFile" | "child_process.fork" | "child_process.spawn" | "child_process.execFileSync" | "child_process.execSync" | "child_process.spawnSync" | "child_process.ChildProcess" | "cluster" | "cluster.isMaster" | "cluster.isPrimary" | "cluster.isWorker" | "cluster.schedulingPolicy" | "cluster.settings" | "cluster.worker" | "cluster.workers" | "cluster.disconnect" | "cluster.fork" | "cluster.setupMaster" | "cluster.setupPrimary" | "cluster.Worker" | "crypto.constants" | "crypto.fips" | "crypto.webcrypto" | "crypto.webcrypto.subtle" | "crypto.webcrypto.subtle.decrypt" | "crypto.webcrypto.subtle.deriveBits" | "crypto.webcrypto.subtle.deriveKey" | "crypto.webcrypto.subtle.digest" | "crypto.webcrypto.subtle.encrypt" | "crypto.webcrypto.subtle.exportKey" | "crypto.webcrypto.subtle.generateKey" | "crypto.webcrypto.subtle.importKey" | "crypto.webcrypto.subtle.sign" | "crypto.webcrypto.subtle.unwrapKey" | "crypto.webcrypto.subtle.verify" | "crypto.webcrypto.subtle.wrapKey" | "crypto.webcrypto.getRandomValues" | "crypto.webcrypto.randomUUID" | "crypto.checkPrime" | "crypto.checkPrimeSync" | "crypto.createCipher" | "crypto.createCipheriv" | "crypto.createDecipher" | "crypto.createDecipheriv" | "crypto.createDiffieHellman" | "crypto.createDiffieHellmanGroup" | "crypto.createECDH" | "crypto.createHash" | "crypto.createHmac" | "crypto.createPrivateKey" | "crypto.createPublicKey" | "crypto.createSecretKey" | "crypto.createSign" | "crypto.createVerify" | "crypto.diffieHellman" | "crypto.generateKey" | "crypto.generateKeyPair" | "crypto.generateKeyPairSync" | "crypto.generateKeySync" | "crypto.generatePrime" | "crypto.generatePrimeSync" | "crypto.getCipherInfo" | "crypto.getCiphers" | "crypto.getCurves" | "crypto.getDiffieHellman" | "crypto.getFips" | "crypto.getHashes" | "crypto.hash" | "crypto.hkdf" | "crypto.hkdfSync" | "crypto.pbkdf2" | "crypto.pbkdf2Sync" | "crypto.privateDecrypt" | "crypto.privateEncrypt" | "crypto.publicDecrypt" | "crypto.publicEncrypt" | "crypto.randomBytes" | "crypto.randomFillSync" | "crypto.randomFill" | "crypto.randomInt" | "crypto.scrypt" | "crypto.scryptSync" | "crypto.secureHeapUsed" | "crypto.setEngine" | "crypto.setFips" | "crypto.sign" | "crypto.timingSafeEqual" | "crypto.verify" | "crypto.Certificate" | "crypto.Certificate.exportChallenge" | "crypto.Certificate.exportPublicKey" | "crypto.Certificate.verifySpkac" | "crypto.Cipher" | "crypto.Decipher" | "crypto.DiffieHellman" | "crypto.DiffieHellmanGroup" | "crypto.ECDH" | "crypto.ECDH.convertKey" | "crypto.Hash()" | "new crypto.Hash()" | "crypto.Hash" | "crypto.Hmac()" | "new crypto.Hmac()" | "crypto.Hmac" | "crypto.KeyObject" | "crypto.KeyObject.from" | "crypto.Sign" | "crypto.Verify" | "crypto.X509Certificate" | "dgram" | "dgram.createSocket" | "dgram.Socket" | "diagnostics_channel" | "diagnostics_channel.hasSubscribers" | "diagnostics_channel.channel" | "diagnostics_channel.subscribe" | "diagnostics_channel.unsubscribe" | "diagnostics_channel.tracingChannel" | "diagnostics_channel.Channel" | "diagnostics_channel.TracingChannel" | "dns" | "dns.Resolver" | "dns.getServers" | "dns.lookup" | "dns.lookupService" | "dns.resolve" | "dns.resolve4" | "dns.resolve6" | "dns.resolveAny" | "dns.resolveCname" | "dns.resolveCaa" | "dns.resolveMx" | "dns.resolveNaptr" | "dns.resolveNs" | "dns.resolvePtr" | "dns.resolveSoa" | "dns.resolveSrv" | "dns.resolveTlsa" | "dns.resolveTxt" | "dns.reverse" | "dns.setDefaultResultOrder" | "dns.getDefaultResultOrder" | "dns.setServers" | "dns.promises" | "dns.promises.Resolver" | "dns.promises.cancel" | "dns.promises.getServers" | "dns.promises.lookup" | "dns.promises.lookupService" | "dns.promises.resolve" | "dns.promises.resolve4" | "dns.promises.resolve6" | "dns.promises.resolveAny" | "dns.promises.resolveCaa" | "dns.promises.resolveCname" | "dns.promises.resolveMx" | "dns.promises.resolveNaptr" | "dns.promises.resolveNs" | "dns.promises.resolvePtr" | "dns.promises.resolveSoa" | "dns.promises.resolveSrv" | "dns.promises.resolveTlsa" | "dns.promises.resolveTxt" | "dns.promises.reverse" | "dns.promises.setDefaultResultOrder" | "dns.promises.getDefaultResultOrder" | "dns.promises.setServers" | "dns/promises" | "dns/promises.Resolver" | "dns/promises.cancel" | "dns/promises.getServers" | "dns/promises.lookup" | "dns/promises.lookupService" | "dns/promises.resolve" | "dns/promises.resolve4" | "dns/promises.resolve6" | "dns/promises.resolveAny" | "dns/promises.resolveCaa" | "dns/promises.resolveCname" | "dns/promises.resolveMx" | "dns/promises.resolveNaptr" | "dns/promises.resolveNs" | "dns/promises.resolvePtr" | "dns/promises.resolveSoa" | "dns/promises.resolveSrv" | "dns/promises.resolveTlsa" | "dns/promises.resolveTxt" | "dns/promises.reverse" | "dns/promises.setDefaultResultOrder" | "dns/promises.getDefaultResultOrder" | "dns/promises.setServers" | "domain" | "domain.create" | "domain.Domain" | "events" | "events.Event" | "events.EventTarget" | "events.CustomEvent" | "events.NodeEventTarget" | "events.EventEmitter" | "events.EventEmitter.defaultMaxListeners" | "events.EventEmitter.errorMonitor" | "events.EventEmitter.captureRejections" | "events.EventEmitter.captureRejectionSymbol" | "events.EventEmitter.getEventListeners" | "events.EventEmitter.getMaxListeners" | "events.EventEmitter.once" | "events.EventEmitter.listenerCount" | "events.EventEmitter.on" | "events.EventEmitter.setMaxListeners" | "events.EventEmitter.addAbortListener" | "events.EventEmitterAsyncResource" | "events.EventEmitterAsyncResource.defaultMaxListeners" | "events.EventEmitterAsyncResource.errorMonitor" | "events.EventEmitterAsyncResource.captureRejections" | "events.EventEmitterAsyncResource.captureRejectionSymbol" | "events.EventEmitterAsyncResource.getEventListeners" | "events.EventEmitterAsyncResource.getMaxListeners" | "events.EventEmitterAsyncResource.once" | "events.EventEmitterAsyncResource.listenerCount" | "events.EventEmitterAsyncResource.on" | "events.EventEmitterAsyncResource.setMaxListeners" | "events.EventEmitterAsyncResource.addAbortListener" | "events.defaultMaxListeners" | "events.errorMonitor" | "events.captureRejections" | "events.captureRejectionSymbol" | "events.getEventListeners" | "events.getMaxListeners" | "events.once" | "events.listenerCount" | "events.on" | "events.setMaxListeners" | "events.addAbortListener" | "fs" | "fs.promises" | "fs.promises.FileHandle" | "fs.promises.access" | "fs.promises.appendFile" | "fs.promises.chmod" | "fs.promises.chown" | "fs.promises.constants" | "fs.promises.copyFile" | "fs.promises.cp" | "fs.promises.glob" | "fs.promises.lchmod" | "fs.promises.lchown" | "fs.promises.link" | "fs.promises.lstat" | "fs.promises.lutimes" | "fs.promises.mkdir" | "fs.promises.mkdtemp" | "fs.promises.open" | "fs.promises.opendir" | "fs.promises.readFile" | "fs.promises.readdir" | "fs.promises.readlink" | "fs.promises.realpath" | "fs.promises.rename" | "fs.promises.rm" | "fs.promises.rmdir" | "fs.promises.stat" | "fs.promises.statfs" | "fs.promises.symlink" | "fs.promises.truncate" | "fs.promises.unlink" | "fs.promises.utimes" | "fs.promises.watch" | "fs.promises.writeFile" | "fs.access" | "fs.appendFile" | "fs.chmod" | "fs.chown" | "fs.close" | "fs.copyFile" | "fs.cp" | "fs.createReadStream" | "fs.createWriteStream" | "fs.exists" | "fs.fchmod" | "fs.fchown" | "fs.fdatasync" | "fs.fstat" | "fs.fsync" | "fs.ftruncate" | "fs.futimes" | "fs.glob" | "fs.lchmod" | "fs.lchown" | "fs.link" | "fs.lstat" | "fs.lutimes" | "fs.mkdir" | "fs.mkdtemp" | "fs.native" | "fs.open" | "fs.openAsBlob" | "fs.opendir" | "fs.read" | "fs.readdir" | "fs.readFile" | "fs.readlink" | "fs.readv" | "fs.realpath" | "fs.realpath.native" | "fs.rename" | "fs.rm" | "fs.rmdir" | "fs.stat" | "fs.statfs" | "fs.symlink" | "fs.truncate" | "fs.unlink" | "fs.unwatchFile" | "fs.utimes" | "fs.watch" | "fs.watchFile" | "fs.write" | "fs.writeFile" | "fs.writev" | "fs.accessSync" | "fs.appendFileSync" | "fs.chmodSync" | "fs.chownSync" | "fs.closeSync" | "fs.copyFileSync" | "fs.cpSync" | "fs.existsSync" | "fs.fchmodSync" | "fs.fchownSync" | "fs.fdatasyncSync" | "fs.fstatSync" | "fs.fsyncSync" | "fs.ftruncateSync" | "fs.futimesSync" | "fs.globSync" | "fs.lchmodSync" | "fs.lchownSync" | "fs.linkSync" | "fs.lstatSync" | "fs.lutimesSync" | "fs.mkdirSync" | "fs.mkdtempSync" | "fs.opendirSync" | "fs.openSync" | "fs.readdirSync" | "fs.readFileSync" | "fs.readlinkSync" | "fs.readSync" | "fs.readvSync" | "fs.realpathSync" | "fs.realpathSync.native" | "fs.renameSync" | "fs.rmdirSync" | "fs.rmSync" | "fs.statfsSync" | "fs.statSync" | "fs.symlinkSync" | "fs.truncateSync" | "fs.unlinkSync" | "fs.utimesSync" | "fs.writeFileSync" | "fs.writeSync" | "fs.writevSync" | "fs.constants" | "fs.Dir" | "fs.Dirent" | "fs.FSWatcher" | "fs.StatWatcher" | "fs.ReadStream" | "fs.Stats()" | "new fs.Stats()" | "fs.Stats" | "fs.StatFs" | "fs.WriteStream" | "fs.common_objects" | "fs/promises" | "fs/promises.FileHandle" | "fs/promises.access" | "fs/promises.appendFile" | "fs/promises.chmod" | "fs/promises.chown" | "fs/promises.constants" | "fs/promises.copyFile" | "fs/promises.cp" | "fs/promises.glob" | "fs/promises.lchmod" | "fs/promises.lchown" | "fs/promises.link" | "fs/promises.lstat" | "fs/promises.lutimes" | "fs/promises.mkdir" | "fs/promises.mkdtemp" | "fs/promises.open" | "fs/promises.opendir" | "fs/promises.readFile" | "fs/promises.readdir" | "fs/promises.readlink" | "fs/promises.realpath" | "fs/promises.rename" | "fs/promises.rm" | "fs/promises.rmdir" | "fs/promises.stat" | "fs/promises.statfs" | "fs/promises.symlink" | "fs/promises.truncate" | "fs/promises.unlink" | "fs/promises.utimes" | "fs/promises.watch" | "fs/promises.writeFile" | "http2" | "http2.constants" | "http2.sensitiveHeaders" | "http2.createServer" | "http2.createSecureServer" | "http2.connect" | "http2.getDefaultSettings" | "http2.getPackedSettings" | "http2.getUnpackedSettings" | "http2.performServerHandshake" | "http2.Http2Session" | "http2.ServerHttp2Session" | "http2.ClientHttp2Session" | "http2.Http2Stream" | "http2.ClientHttp2Stream" | "http2.ServerHttp2Stream" | "http2.Http2Server" | "http2.Http2SecureServer" | "http2.Http2ServerRequest" | "http2.Http2ServerResponse" | "http" | "http.METHODS" | "http.STATUS_CODES" | "http.globalAgent" | "http.maxHeaderSize" | "http.createServer" | "http.get" | "http.request" | "http.validateHeaderName" | "http.validateHeaderValue" | "http.setMaxIdleHTTPParsers" | "http.Agent" | "http.ClientRequest" | "http.Server" | "http.ServerResponse" | "http.IncomingMessage" | "http.OutgoingMessage" | "http.WebSocket" | "_http_agent" | "_http_client" | "_http_common" | "_http_incoming" | "_http_outgoing" | "_http_server" | "https" | "https.globalAgent" | "https.createServer" | "https.get" | "https.request" | "https.Agent" | "https.Server" | "inspector" | "inspector.Session" | "inspector.Network.dataReceived" | "inspector.Network.dataSent" | "inspector.Network.loadingFailed" | "inspector.Network.loadingFinished" | "inspector.Network.requestWillBeSent" | "inspector.Network.responseReceived" | "inspector.NetworkResources.put" | "inspector.console" | "inspector.close" | "inspector.open" | "inspector.url" | "inspector.waitForDebugger" | "inspector/promises" | "inspector/promises.Session" | "inspector/promises.Network.dataReceived" | "inspector/promises.Network.dataSent" | "inspector/promises.Network.loadingFailed" | "inspector/promises.Network.loadingFinished" | "inspector/promises.Network.requestWillBeSent" | "inspector/promises.Network.responseReceived" | "inspector/promises.NetworkResources.put" | "inspector/promises.console" | "inspector/promises.close" | "inspector/promises.open" | "inspector/promises.url" | "inspector/promises.waitForDebugger" | "module.builtinModules" | "module.constants.compileCacheStatus" | "module.createRequire" | "module.createRequireFromPath" | "module.enableCompileCache" | "module.findPackageJSON" | "module.flushCompileCache" | "module.getCompileCacheDir" | "module.getSourceMapsSupport" | "module.isBuiltin" | "module.registerHooks" | "module.register" | "module.setSourceMapsSupport" | "module.stripTypeScriptTypes" | "module.syncBuiltinESMExports" | "module.findSourceMap" | "module.SourceMap" | "module.Module.builtinModules" | "module.Module.createRequire" | "module.Module.createRequireFromPath" | "module.Module.enableCompileCache" | "module.Module.findPackageJSON" | "module.Module.flushCompileCache" | "module.Module.getCompileCacheDir" | "module.Module.getSourceMapsSupport" | "module.Module.isBuiltin" | "module.Module.registerHooks" | "module.Module.register" | "module.Module.setSourceMapsSupport" | "module.Module.stripTypeScriptTypes" | "module.Module.syncBuiltinESMExports" | "module.Module.findSourceMap" | "module.Module.SourceMap" | "net" | "net.connect" | "net.createConnection" | "net.createServer" | "net.getDefaultAutoSelectFamily" | "net.setDefaultAutoSelectFamily" | "net.getDefaultAutoSelectFamilyAttemptTimeout" | "net.setDefaultAutoSelectFamilyAttemptTimeout" | "net.isIP" | "net.isIPv4" | "net.isIPv6" | "net.BlockList" | "net.BlockList.isBlockList" | "net.SocketAddress" | "net.SocketAddress.parse" | "net.Server" | "net.Socket" | "os" | "os.EOL" | "os.constants" | "os.constants.priority" | "os.devNull" | "os.availableParallelism" | "os.arch" | "os.cpus" | "os.endianness" | "os.freemem" | "os.getPriority" | "os.homedir" | "os.hostname" | "os.loadavg" | "os.machine" | "os.networkInterfaces" | "os.platform" | "os.release" | "os.setPriority" | "os.tmpdir" | "os.totalmem" | "os.type" | "os.uptime" | "os.userInfo" | "os.version" | "path" | "path.posix" | "path.posix.delimiter" | "path.posix.sep" | "path.posix.basename" | "path.posix.dirname" | "path.posix.extname" | "path.posix.format" | "path.posix.matchesGlob" | "path.posix.isAbsolute" | "path.posix.join" | "path.posix.normalize" | "path.posix.parse" | "path.posix.relative" | "path.posix.resolve" | "path.posix.toNamespacedPath" | "path.win32" | "path.win32.delimiter" | "path.win32.sep" | "path.win32.basename" | "path.win32.dirname" | "path.win32.extname" | "path.win32.format" | "path.win32.matchesGlob" | "path.win32.isAbsolute" | "path.win32.join" | "path.win32.normalize" | "path.win32.parse" | "path.win32.relative" | "path.win32.resolve" | "path.win32.toNamespacedPath" | "path.delimiter" | "path.sep" | "path.basename" | "path.dirname" | "path.extname" | "path.format" | "path.matchesGlob" | "path.isAbsolute" | "path.join" | "path.normalize" | "path.parse" | "path.relative" | "path.resolve" | "path.toNamespacedPath" | "path/posix" | "path/posix.delimiter" | "path/posix.sep" | "path/posix.basename" | "path/posix.dirname" | "path/posix.extname" | "path/posix.format" | "path/posix.matchesGlob" | "path/posix.isAbsolute" | "path/posix.join" | "path/posix.normalize" | "path/posix.parse" | "path/posix.relative" | "path/posix.resolve" | "path/posix.toNamespacedPath" | "path/win32" | "path/win32.delimiter" | "path/win32.sep" | "path/win32.basename" | "path/win32.dirname" | "path/win32.extname" | "path/win32.format" | "path/win32.matchesGlob" | "path/win32.isAbsolute" | "path/win32.join" | "path/win32.normalize" | "path/win32.parse" | "path/win32.relative" | "path/win32.resolve" | "path/win32.toNamespacedPath" | "perf_hooks" | "perf_hooks.performance" | "perf_hooks.performance.clearMarks" | "perf_hooks.performance.clearMeasures" | "perf_hooks.performance.clearResourceTimings" | "perf_hooks.performance.eventLoopUtilization" | "perf_hooks.performance.getEntries" | "perf_hooks.performance.getEntriesByName" | "perf_hooks.performance.getEntriesByType" | "perf_hooks.performance.mark" | "perf_hooks.performance.markResourceTiming" | "perf_hooks.performance.measure" | "perf_hooks.performance.nodeTiming" | "perf_hooks.performance.nodeTiming.bootstrapComplete" | "perf_hooks.performance.nodeTiming.environment" | "perf_hooks.performance.nodeTiming.idleTime" | "perf_hooks.performance.nodeTiming.loopExit" | "perf_hooks.performance.nodeTiming.loopStart" | "perf_hooks.performance.nodeTiming.nodeStart" | "perf_hooks.performance.nodeTiming.uvMetricsInfo" | "perf_hooks.performance.nodeTiming.v8Start" | "perf_hooks.performance.now" | "perf_hooks.performance.onresourcetimingbufferfull" | "perf_hooks.performance.setResourceTimingBufferSize" | "perf_hooks.performance.timeOrigin" | "perf_hooks.performance.timerify" | "perf_hooks.performance.toJSON" | "perf_hooks.createHistogram" | "perf_hooks.monitorEventLoopDelay" | "perf_hooks.PerformanceEntry" | "perf_hooks.PerformanceMark" | "perf_hooks.PerformanceMeasure" | "perf_hooks.PerformanceNodeEntry" | "perf_hooks.PerformanceNodeTiming" | "perf_hooks.PerformanceResourceTiming" | "perf_hooks.PerformanceObserver" | "perf_hooks.PerformanceObserverEntryList" | "perf_hooks.Histogram" | "perf_hooks.IntervalHistogram" | "perf_hooks.RecordableHistogram" | "punycode" | "punycode.ucs2" | "punycode.version" | "punycode.decode" | "punycode.encode" | "punycode.toASCII" | "punycode.toUnicode" | "querystring" | "querystring.decode" | "querystring.encode" | "querystring.escape" | "querystring.parse" | "querystring.stringify" | "querystring.unescape" | "readline" | "readline.promises" | "readline.promises.createInterface" | "readline.promises.Interface" | "readline.promises.Readline" | "readline.clearLine" | "readline.clearScreenDown" | "readline.createInterface" | "readline.cursorTo" | "readline.moveCursor" | "readline.Interface" | "readline.emitKeypressEvents" | "readline.InterfaceConstructor" | "readline/promises" | "readline/promises.createInterface" | "readline/promises.Interface" | "readline/promises.Readline" | "repl" | "repl.start" | "repl.writer" | "repl.REPLServer()" | "repl.REPLServer" | "repl.REPL_MODE_MAGIC" | "repl.REPL_MODE_SLOPPY" | "repl.REPL_MODE_STRICT" | "repl.Recoverable()" | "repl.Recoverable" | "repl.builtinModules" | "sea" | "sea.isSea" | "sea.getAsset" | "sea.getAssetAsBlob" | "sea.getRawAsset" | "sea.sea.isSea" | "sea.sea.getAsset" | "sea.sea.getAssetAsBlob" | "sea.sea.getRawAsset" | "stream" | "stream.promises" | "stream.promises.pipeline" | "stream.promises.finished" | "stream.finished" | "stream.pipeline" | "stream.compose" | "stream.duplexPair" | "stream.Readable" | "stream.Readable.from" | "stream.Readable.isDisturbed" | "stream.Readable.fromWeb" | "stream.Readable.toWeb" | "stream.Writable" | "stream.Writable.fromWeb" | "stream.Writable.toWeb" | "stream.Duplex" | "stream.Duplex.from" | "stream.Duplex.fromWeb" | "stream.Duplex.toWeb" | "stream.Transform" | "stream.isErrored" | "stream.isReadable" | "stream.addAbortSignal" | "stream.getDefaultHighWaterMark" | "stream.setDefaultHighWaterMark" | "stream/promises.pipeline" | "stream/promises.finished" | "stream/web" | "stream/web.ReadableStream" | "stream/web.ReadableStream.from" | "stream/web.ReadableStreamDefaultReader" | "stream/web.ReadableStreamBYOBReader" | "stream/web.ReadableStreamDefaultController" | "stream/web.ReadableByteStreamController" | "stream/web.ReadableStreamBYOBRequest" | "stream/web.WritableStream" | "stream/web.WritableStreamDefaultWriter" | "stream/web.WritableStreamDefaultController" | "stream/web.TransformStream" | "stream/web.TransformStreamDefaultController" | "stream/web.ByteLengthQueuingStrategy" | "stream/web.CountQueuingStrategy" | "stream/web.TextEncoderStream" | "stream/web.TextDecoderStream" | "stream/web.CompressionStream" | "stream/web.DecompressionStream" | "stream/consumers" | "stream/consumers.arrayBuffer" | "stream/consumers.blob" | "stream/consumers.buffer" | "stream/consumers.json" | "stream/consumers.text" | "string_decoder" | "string_decoder.StringDecoder" | "sqlite" | "sqlite.constants" | "sqlite.constants.SQLITE_CHANGESET_OMIT" | "sqlite.constants.SQLITE_CHANGESET_REPLACE" | "sqlite.constants.SQLITE_CHANGESET_ABORT" | "sqlite.backup" | "sqlite.DatabaseSync" | "sqlite.StatementSync" | "sqlite.SQLITE_CHANGESET_OMIT" | "sqlite.SQLITE_CHANGESET_REPLACE" | "sqlite.SQLITE_CHANGESET_ABORT" | "test" | "test.after" | "test.afterEach" | "test.assert" | "test.assert.register" | "test.before" | "test.beforeEach" | "test.describe" | "test.describe.only" | "test.describe.skip" | "test.describe.todo" | "test.it" | "test.it.only" | "test.it.skip" | "test.it.todo" | "test.mock" | "test.mock.fn" | "test.mock.getter" | "test.mock.method" | "test.mock.module" | "test.mock.reset" | "test.mock.restoreAll" | "test.mock.setter" | "test.mock.timers" | "test.mock.timers.enable" | "test.mock.timers.reset" | "test.mock.timers.tick" | "test.only" | "test.run" | "test.snapshot" | "test.snapshot.setDefaultSnapshotSerializers" | "test.snapshot.setResolveSnapshotPath" | "test.skip" | "test.suite" | "test.test" | "test.test.only" | "test.test.skip" | "test.test.todo" | "test.todo" | "timers" | "timers.Immediate" | "timers.Timeout" | "timers.setImmediate" | "timers.clearImmediate" | "timers.setInterval" | "timers.clearInterval" | "timers.setTimeout" | "timers.clearTimeout" | "timers.promises" | "timers.promises.setTimeout" | "timers.promises.setImmediate" | "timers.promises.setInterval" | "timers.promises.scheduler.wait" | "timers.promises.scheduler.yield" | "timers/promises" | "timers/promises.setTimeout" | "timers/promises.setImmediate" | "timers/promises.setInterval" | "timers/promises.scheduler.wait" | "timers/promises.scheduler.yield" | "tls" | "tls.checkServerIdentity" | "tls.connect" | "tls.createSecureContext" | "tls.createSecurePair" | "tls.createServer" | "tls.CryptoStream" | "tls.DEFAULT_CIPHERS" | "tls.DEFAULT_ECDH_CURVE" | "tls.DEFAULT_MAX_VERSION" | "tls.DEFAULT_MIN_VERSION" | "tls.getCACertificates" | "tls.getCiphers" | "tls.rootCertificates" | "tls.SecureContext" | "tls.SecurePair" | "tls.Server" | "tls.setDefaultCACertificates" | "tls.TLSSocket" | "trace_events" | "trace_events.createTracing" | "trace_events.getEnabledCategories" | "tty" | "tty.isatty" | "tty.ReadStream" | "tty.WriteStream" | "url" | "url.domainToASCII" | "url.domainToUnicode" | "url.fileURLToPath" | "url.format" | "url.pathToFileURL" | "url.urlToHttpOptions" | "url.URL" | "url.URL.canParse" | "url.URL.createObjectURL" | "url.URL.revokeObjectURL" | "url.URLPattern" | "url.URLSearchParams" | "url.Url" | "util.promisify" | "util.promisify.custom" | "util.callbackify" | "util.debuglog" | "util.debug" | "util.deprecate" | "util.diff" | "util.format" | "util.formatWithOptions" | "util.getCallSite" | "util.getCallSites" | "util.getSystemErrorName" | "util.getSystemErrorMap" | "util.getSystemErrorMessage" | "util.inherits" | "util.inspect" | "util.inspect.custom" | "util.inspect.defaultOptions" | "util.inspect.replDefaults" | "util.isDeepStrictEqual" | "util.parseArgs" | "util.parseEnv" | "util.setTraceSigInt" | "util.stripVTControlCharacters" | "util.styleText" | "util.toUSVString" | "util.transferableAbortController" | "util.transferableAbortSignal" | "util.aborted" | "util.MIMEType" | "util.MIMEParams" | "util.TextDecoder" | "util.TextEncoder" | "util.types" | "util.types.isExternal" | "util.types.isDate" | "util.types.isArgumentsObject" | "util.types.isBigIntObject" | "util.types.isBooleanObject" | "util.types.isNumberObject" | "util.types.isStringObject" | "util.types.isSymbolObject" | "util.types.isNativeError" | "util.types.isRegExp" | "util.types.isAsyncFunction" | "util.types.isGeneratorFunction" | "util.types.isGeneratorObject" | "util.types.isPromise" | "util.types.isMap" | "util.types.isSet" | "util.types.isMapIterator" | "util.types.isSetIterator" | "util.types.isWeakMap" | "util.types.isWeakSet" | "util.types.isArrayBuffer" | "util.types.isDataView" | "util.types.isSharedArrayBuffer" | "util.types.isProxy" | "util.types.isModuleNamespaceObject" | "util.types.isAnyArrayBuffer" | "util.types.isBoxedPrimitive" | "util.types.isArrayBufferView" | "util.types.isTypedArray" | "util.types.isUint8Array" | "util.types.isUint8ClampedArray" | "util.types.isUint16Array" | "util.types.isUint32Array" | "util.types.isInt8Array" | "util.types.isInt16Array" | "util.types.isInt32Array" | "util.types.isFloat16Array" | "util.types.isFloat32Array" | "util.types.isFloat64Array" | "util.types.isBigInt64Array" | "util.types.isBigUint64Array" | "util.types.isKeyObject" | "util.types.isCryptoKey" | "util.types.isWebAssemblyCompiledModule" | "util._extend" | "util.isArray" | "util.isBoolean" | "util.isBuffer" | "util.isDate" | "util.isError" | "util.isFunction" | "util.isNull" | "util.isNullOrUndefined" | "util.isNumber" | "util.isObject" | "util.isPrimitive" | "util.isRegExp" | "util.isString" | "util.isSymbol" | "util.isUndefined" | "util.log" | "util" | "util/types" | "util/types.isExternal" | "util/types.isDate" | "util/types.isArgumentsObject" | "util/types.isBigIntObject" | "util/types.isBooleanObject" | "util/types.isNumberObject" | "util/types.isStringObject" | "util/types.isSymbolObject" | "util/types.isNativeError" | "util/types.isRegExp" | "util/types.isAsyncFunction" | "util/types.isGeneratorFunction" | "util/types.isGeneratorObject" | "util/types.isPromise" | "util/types.isMap" | "util/types.isSet" | "util/types.isMapIterator" | "util/types.isSetIterator" | "util/types.isWeakMap" | "util/types.isWeakSet" | "util/types.isArrayBuffer" | "util/types.isDataView" | "util/types.isSharedArrayBuffer" | "util/types.isProxy" | "util/types.isModuleNamespaceObject" | "util/types.isAnyArrayBuffer" | "util/types.isBoxedPrimitive" | "util/types.isArrayBufferView" | "util/types.isTypedArray" | "util/types.isUint8Array" | "util/types.isUint8ClampedArray" | "util/types.isUint16Array" | "util/types.isUint32Array" | "util/types.isInt8Array" | "util/types.isInt16Array" | "util/types.isInt32Array" | "util/types.isFloat16Array" | "util/types.isFloat32Array" | "util/types.isFloat64Array" | "util/types.isBigInt64Array" | "util/types.isBigUint64Array" | "util/types.isKeyObject" | "util/types.isCryptoKey" | "util/types.isWebAssemblyCompiledModule" | "v8" | "v8.serialize" | "v8.deserialize" | "v8.Serializer" | "v8.Deserializer" | "v8.DefaultSerializer" | "v8.DefaultDeserializer" | "v8.promiseHooks" | "v8.promiseHooks.onInit" | "v8.promiseHooks.onSettled" | "v8.promiseHooks.onBefore" | "v8.promiseHooks.onAfter" | "v8.promiseHooks.createHook" | "v8.startupSnapshot" | "v8.startupSnapshot.addSerializeCallback" | "v8.startupSnapshot.addDeserializeCallback" | "v8.startupSnapshot.setDeserializeMainFunction" | "v8.startupSnapshot.isBuildingSnapshot" | "v8.cachedDataVersionTag" | "v8.getHeapCodeStatistics" | "v8.getHeapSnapshot" | "v8.getHeapSpaceStatistics" | "v8.getHeapStatistics" | "v8.isStringOneByteRepresentation" | "v8.queryObjects" | "v8.setFlagsFromString" | "v8.stopCoverage" | "v8.takeCoverage" | "v8.writeHeapSnapshot" | "v8.setHeapSnapshotNearHeapLimit" | "v8.GCProfiler" | "vm.constants" | "vm.compileFunction" | "vm.createContext" | "vm.isContext" | "vm.measureMemory" | "vm.runInContext" | "vm.runInNewContext" | "vm.runInThisContext" | "vm.Script" | "vm.Module" | "vm.SourceTextModule" | "vm.SyntheticModule" | "vm" | "wasi.WASI" | "wasi" | "worker_threads" | "worker_threads.parentPort" | "worker_threads.resourceLimits" | "worker_threads.SHARE_ENV" | "worker_threads.threadId" | "worker_threads.workerData" | "worker_threads.getEnvironmentData" | "worker_threads.getHeapStatistics" | "worker_threads.markAsUncloneable" | "worker_threads.markAsUntransferable" | "worker_threads.isInternalThread" | "worker_threads.isMainThread" | "worker_threads.isMarkedAsUntransferable" | "worker_threads.moveMessagePortToContext" | "worker_threads.postMessageToThread" | "worker_threads.receiveMessageOnPort" | "worker_threads.setEnvironmentData" | "worker_threads.BroadcastChannel" | "worker_threads.MessageChannel" | "worker_threads.MessagePort" | "worker_threads.Worker" | "zlib.brotliCompress" | "zlib.brotliCompressSync" | "zlib.brotliDecompress" | "zlib.brotliDecompressSync" | "zlib.constants" | "zlib.constants.ZSTD_e_continue" | "zlib.constants.ZSTD_e_flush" | "zlib.constants.ZSTD_e_end" | "zlib.constants.ZSTD_fast" | "zlib.constants.ZSTD_dfast" | "zlib.constants.ZSTD_greedy" | "zlib.constants.ZSTD_lazy" | "zlib.constants.ZSTD_lazy2" | "zlib.constants.ZSTD_btlazy2" | "zlib.constants.ZSTD_btopt" | "zlib.constants.ZSTD_btultra" | "zlib.constants.ZSTD_btultra2" | "zlib.constants.ZSTD_c_compressionLevel" | "zlib.constants.ZSTD_c_windowLog" | "zlib.constants.ZSTD_c_hashLog" | "zlib.constants.ZSTD_c_chainLog" | "zlib.constants.ZSTD_c_searchLog" | "zlib.constants.ZSTD_c_minMatch" | "zlib.constants.ZSTD_c_targetLength" | "zlib.constants.ZSTD_c_strategy" | "zlib.constants.ZSTD_c_enableLongDistanceMatching" | "zlib.constants.ZSTD_c_ldmHashLog" | "zlib.constants.ZSTD_c_ldmMinMatch" | "zlib.constants.ZSTD_c_ldmBucketSizeLog" | "zlib.constants.ZSTD_c_ldmHashRateLog" | "zlib.constants.ZSTD_c_contentSizeFlag" | "zlib.constants.ZSTD_c_checksumFlag" | "zlib.constants.ZSTD_c_dictIDFlag" | "zlib.constants.ZSTD_c_nbWorkers" | "zlib.constants.ZSTD_c_jobSize" | "zlib.constants.ZSTD_c_overlapLog" | "zlib.constants.ZSTD_d_windowLogMax" | "zlib.constants.ZSTD_CLEVEL_DEFAULT" | "zlib.constants.ZSTD_error_no_error" | "zlib.constants.ZSTD_error_GENERIC" | "zlib.constants.ZSTD_error_prefix_unknown" | "zlib.constants.ZSTD_error_version_unsupported" | "zlib.constants.ZSTD_error_frameParameter_unsupported" | "zlib.constants.ZSTD_error_frameParameter_windowTooLarge" | "zlib.constants.ZSTD_error_corruption_detected" | "zlib.constants.ZSTD_error_checksum_wrong" | "zlib.constants.ZSTD_error_literals_headerWrong" | "zlib.constants.ZSTD_error_dictionary_corrupted" | "zlib.constants.ZSTD_error_dictionary_wrong" | "zlib.constants.ZSTD_error_dictionaryCreation_failed" | "zlib.constants.ZSTD_error_parameter_unsupported" | "zlib.constants.ZSTD_error_parameter_combination_unsupported" | "zlib.constants.ZSTD_error_parameter_outOfBound" | "zlib.constants.ZSTD_error_tableLog_tooLarge" | "zlib.constants.ZSTD_error_maxSymbolValue_tooLarge" | "zlib.constants.ZSTD_error_maxSymbolValue_tooSmall" | "zlib.constants.ZSTD_error_stabilityCondition_notRespected" | "zlib.constants.ZSTD_error_stage_wrong" | "zlib.constants.ZSTD_error_init_missing" | "zlib.constants.ZSTD_error_memory_allocation" | "zlib.constants.ZSTD_error_workSpace_tooSmall" | "zlib.constants.ZSTD_error_dstSize_tooSmall" | "zlib.constants.ZSTD_error_srcSize_wrong" | "zlib.constants.ZSTD_error_dstBuffer_null" | "zlib.constants.ZSTD_error_noForwardProgress_destFull" | "zlib.constants.ZSTD_error_noForwardProgress_inputEmpty" | "zlib.crc32" | "zlib.createBrotliCompress" | "zlib.createBrotliDecompress" | "zlib.createDeflate" | "zlib.createDeflateRaw" | "zlib.createGunzip" | "zlib.createGzip" | "zlib.createInflate" | "zlib.createInflateRaw" | "zlib.createUnzip" | "zlib.createZstdCompress" | "zlib.createZstdDecompress" | "zlib.deflate" | "zlib.deflateRaw" | "zlib.deflateRawSync" | "zlib.deflateSync" | "zlib.gunzip" | "zlib.gunzipSync" | "zlib.gzip" | "zlib.gzipSync" | "zlib.inflate" | "zlib.inflateRaw" | "zlib.inflateRawSync" | "zlib.inflateSync" | "zlib.unzip" | "zlib.unzipSync" | "zlib.zstdCompress" | "zlib.zstdCompressSync" | "zlib.zstdDecompress" | "zlib.zstdDecompressSync" | "zlib.BrotliCompress()" | "zlib.BrotliCompress" | "zlib.BrotliDecompress()" | "zlib.BrotliDecompress" | "zlib.Deflate()" | "zlib.Deflate" | "zlib.DeflateRaw()" | "zlib.DeflateRaw" | "zlib.Gunzip()" | "zlib.Gunzip" | "zlib.Gzip()" | "zlib.Gzip" | "zlib.Inflate()" | "zlib.Inflate" | "zlib.InflateRaw()" | "zlib.InflateRaw" | "zlib.Unzip()" | "zlib.Unzip" | "zlib.ZstdCompress" | "zlib.ZstdDecompress" | "zlib.ZstdOptions" | "zlib" | "import.meta.resolve" | "import.meta.dirname" | "import.meta.filename" | "import.meta.main")[];
10115
+ ignores?: ("__filename" | "__dirname" | "require" | "require.cache" | "require.extensions" | "require.main" | "require.resolve" | "require.resolve.paths" | "module" | "module.children" | "module.exports" | "module.filename" | "module.id" | "module.isPreloading" | "module.loaded" | "module.parent" | "module.path" | "module.paths" | "module.require" | "exports" | "AbortController" | "AbortSignal" | "AbortSignal.abort" | "AbortSignal.timeout" | "AbortSignal.any" | "DOMException" | "FormData" | "Headers" | "MessageEvent" | "Navigator" | "Request" | "Response" | "WebAssembly" | "WebSocket" | "fetch" | "global" | "queueMicrotask" | "navigator" | "navigator.hardwareConcurrency" | "navigator.language" | "navigator.languages" | "navigator.locks" | "navigator.locks.request" | "navigator.locks.query" | "navigator.platform" | "navigator.userAgent" | "structuredClone" | "localStorage" | "sessionStorage" | "Storage" | "Blob" | "new Buffer()" | "Buffer" | "Buffer.alloc" | "Buffer.allocUnsafe" | "Buffer.allocUnsafeSlow" | "Buffer.byteLength" | "Buffer.compare" | "Buffer.concat" | "Buffer.copyBytesFrom" | "Buffer.from" | "Buffer.isBuffer" | "Buffer.isEncoding" | "File" | "atob" | "btoa" | "console" | "console.profile" | "console.profileEnd" | "console.timeStamp" | "console.Console" | "console.assert" | "console.clear" | "console.count" | "console.countReset" | "console.debug" | "console.dir" | "console.dirxml" | "console.error" | "console.group" | "console.groupCollapsed" | "console.groupEnd" | "console.info" | "console.log" | "console.table" | "console.time" | "console.timeEnd" | "console.timeLog" | "console.trace" | "console.warn" | "crypto" | "crypto.subtle" | "crypto.subtle.decapsulateBits" | "crypto.subtle.decapsulateKey" | "crypto.subtle.decrypt" | "crypto.subtle.deriveBits" | "crypto.subtle.deriveKey" | "crypto.subtle.digest" | "crypto.subtle.encapsulateBits" | "crypto.subtle.encapsulateKey" | "crypto.subtle.encrypt" | "crypto.subtle.exportKey" | "crypto.subtle.generateKey" | "crypto.subtle.getPublicKey" | "crypto.subtle.importKey" | "crypto.subtle.sign" | "crypto.subtle.unwrapKey" | "crypto.subtle.verify" | "crypto.subtle.wrapKey" | "crypto.getRandomValues" | "crypto.randomUUID" | "Crypto" | "CryptoKey" | "SubtleCrypto" | "SubtleCrypto.supports" | "CloseEvent" | "CustomEvent" | "Event" | "EventSource" | "EventTarget" | "PerformanceEntry" | "PerformanceMark" | "PerformanceMeasure" | "PerformanceObserver" | "PerformanceObserverEntryList" | "PerformanceResourceTiming" | "performance" | "performance.clearMarks" | "performance.clearMeasures" | "performance.clearResourceTimings" | "performance.eventLoopUtilization" | "performance.getEntries" | "performance.getEntriesByName" | "performance.getEntriesByType" | "performance.mark" | "performance.markResourceTiming" | "performance.measure" | "performance.nodeTiming" | "performance.nodeTiming.bootstrapComplete" | "performance.nodeTiming.environment" | "performance.nodeTiming.idleTime" | "performance.nodeTiming.loopExit" | "performance.nodeTiming.loopStart" | "performance.nodeTiming.nodeStart" | "performance.nodeTiming.uvMetricsInfo" | "performance.nodeTiming.v8Start" | "performance.now" | "performance.onresourcetimingbufferfull" | "performance.setResourceTimingBufferSize" | "performance.timeOrigin" | "performance.timerify" | "performance.toJSON" | "process" | "process.allowedNodeEnvironmentFlags" | "process.availableMemory" | "process.arch" | "process.argv" | "process.argv0" | "process.channel" | "process.config" | "process.connected" | "process.debugPort" | "process.env" | "process.execArgv" | "process.execPath" | "process.execve" | "process.exitCode" | "process.features.cached_builtins" | "process.features.debug" | "process.features.inspector" | "process.features.ipv6" | "process.features.require_module" | "process.features.tls" | "process.features.tls_alpn" | "process.features.tls_ocsp" | "process.features.tls_sni" | "process.features.typescript" | "process.features.uv" | "process.finalization.register" | "process.finalization.registerBeforeExit" | "process.finalization.unregister" | "process.getBuiltinModule" | "process.mainModule" | "process.noDeprecation" | "process.permission" | "process.pid" | "process.platform" | "process.ppid" | "process.ref" | "process.release" | "process.report" | "process.report.excludeEnv" | "process.sourceMapsEnabled" | "process.stdin" | "process.stdin.isRaw" | "process.stdin.isTTY" | "process.stdin.setRawMode" | "process.stdout" | "process.stdout.clearLine" | "process.stdout.clearScreenDown" | "process.stdout.columns" | "process.stdout.cursorTo" | "process.stdout.getColorDepth" | "process.stdout.getWindowSize" | "process.stdout.hasColors" | "process.stdout.isTTY" | "process.stdout.moveCursor" | "process.stdout.rows" | "process.stderr" | "process.stderr.clearLine" | "process.stderr.clearScreenDown" | "process.stderr.columns" | "process.stderr.cursorTo" | "process.stderr.getColorDepth" | "process.stderr.getWindowSize" | "process.stderr.hasColors" | "process.stderr.isTTY" | "process.stderr.moveCursor" | "process.stderr.rows" | "process.threadCpuUsage" | "process.throwDeprecation" | "process.title" | "process.traceDeprecation" | "process.version" | "process.versions" | "process.abort" | "process.chdir" | "process.constrainedMemory" | "process.cpuUsage" | "process.cwd" | "process.disconnect" | "process.dlopen" | "process.emitWarning" | "process.exit" | "process.getActiveResourcesInfo" | "process.getegid" | "process.geteuid" | "process.getgid" | "process.getgroups" | "process.getuid" | "process.hasUncaughtExceptionCaptureCallback" | "process.hrtime" | "process.hrtime.bigint" | "process.initgroups" | "process.kill" | "process.loadEnvFile" | "process.memoryUsage" | "process.rss" | "process.nextTick" | "process.resourceUsage" | "process.send" | "process.setegid" | "process.seteuid" | "process.setgid" | "process.setgroups" | "process.setuid" | "process.setSourceMapsEnabled" | "process.setUncaughtExceptionCaptureCallback" | "process.umask" | "process.unref" | "process.uptime" | "ReadableStream" | "ReadableStream.from" | "ReadableStreamDefaultReader" | "ReadableStreamBYOBReader" | "ReadableStreamDefaultController" | "ReadableByteStreamController" | "ReadableStreamBYOBRequest" | "WritableStream" | "WritableStreamDefaultWriter" | "WritableStreamDefaultController" | "TransformStream" | "TransformStreamDefaultController" | "ByteLengthQueuingStrategy" | "CountQueuingStrategy" | "TextEncoderStream" | "TextDecoderStream" | "CompressionStream" | "DecompressionStream" | "setInterval" | "clearInterval" | "setTimeout" | "clearTimeout" | "setImmediate" | "clearImmediate" | "URL" | "URL.canParse" | "URL.createObjectURL" | "URL.revokeObjectURL" | "URLSearchParams" | "TextDecoder" | "TextEncoder" | "BroadcastChannel" | "MessageChannel" | "MessagePort" | "assert" | "assert.Assert" | "assert.assert" | "assert.deepEqual" | "assert.deepStrictEqual" | "assert.doesNotMatch" | "assert.doesNotReject" | "assert.doesNotThrow" | "assert.equal" | "assert.fail" | "assert.ifError" | "assert.match" | "assert.notDeepEqual" | "assert.notDeepStrictEqual" | "assert.notEqual" | "assert.notStrictEqual" | "assert.ok" | "assert.partialDeepStrictEqual" | "assert.rejects" | "assert.strictEqual" | "assert.throws" | "assert.CallTracker" | "assert.strict" | "assert.strict.Assert" | "assert.strict.assert" | "assert.strict.deepEqual" | "assert.strict.deepStrictEqual" | "assert.strict.doesNotMatch" | "assert.strict.doesNotReject" | "assert.strict.doesNotThrow" | "assert.strict.equal" | "assert.strict.fail" | "assert.strict.ifError" | "assert.strict.match" | "assert.strict.notDeepEqual" | "assert.strict.notDeepStrictEqual" | "assert.strict.notEqual" | "assert.strict.notStrictEqual" | "assert.strict.ok" | "assert.strict.partialDeepStrictEqual" | "assert.strict.rejects" | "assert.strict.strictEqual" | "assert.strict.throws" | "assert.strict.CallTracker" | "assert/strict" | "assert/strict.Assert" | "assert/strict.assert" | "assert/strict.deepEqual" | "assert/strict.deepStrictEqual" | "assert/strict.doesNotMatch" | "assert/strict.doesNotReject" | "assert/strict.doesNotThrow" | "assert/strict.equal" | "assert/strict.fail" | "assert/strict.ifError" | "assert/strict.match" | "assert/strict.notDeepEqual" | "assert/strict.notDeepStrictEqual" | "assert/strict.notEqual" | "assert/strict.notStrictEqual" | "assert/strict.ok" | "assert/strict.partialDeepStrictEqual" | "assert/strict.rejects" | "assert/strict.strictEqual" | "assert/strict.throws" | "assert/strict.CallTracker" | "async_hooks" | "async_hooks.createHook" | "async_hooks.executionAsyncResource" | "async_hooks.executionAsyncId" | "async_hooks.triggerAsyncId" | "async_hooks.AsyncLocalStorage" | "async_hooks.AsyncLocalStorage.bind" | "async_hooks.AsyncLocalStorage.snapshot" | "async_hooks.AsyncResource" | "async_hooks.AsyncResource.bind" | "buffer" | "buffer.constants" | "buffer.INSPECT_MAX_BYTES" | "buffer.kMaxLength" | "buffer.kStringMaxLength" | "buffer.atob" | "buffer.btoa" | "buffer.isAscii" | "buffer.isUtf8" | "buffer.resolveObjectURL" | "buffer.transcode" | "buffer.SlowBuffer" | "buffer.Blob" | "new buffer.Buffer()" | "buffer.Buffer" | "buffer.Buffer.alloc" | "buffer.Buffer.allocUnsafe" | "buffer.Buffer.allocUnsafeSlow" | "buffer.Buffer.byteLength" | "buffer.Buffer.compare" | "buffer.Buffer.concat" | "buffer.Buffer.copyBytesFrom" | "buffer.Buffer.from" | "buffer.Buffer.isBuffer" | "buffer.Buffer.isEncoding" | "buffer.File" | "child_process" | "child_process.exec" | "child_process.execFile" | "child_process.fork" | "child_process.spawn" | "child_process.execFileSync" | "child_process.execSync" | "child_process.spawnSync" | "child_process.ChildProcess" | "cluster" | "cluster.isMaster" | "cluster.isPrimary" | "cluster.isWorker" | "cluster.schedulingPolicy" | "cluster.settings" | "cluster.worker" | "cluster.workers" | "cluster.disconnect" | "cluster.fork" | "cluster.setupMaster" | "cluster.setupPrimary" | "cluster.Worker" | "crypto.constants" | "crypto.fips" | "crypto.webcrypto" | "crypto.webcrypto.subtle" | "crypto.webcrypto.subtle.decapsulateBits" | "crypto.webcrypto.subtle.decapsulateKey" | "crypto.webcrypto.subtle.decrypt" | "crypto.webcrypto.subtle.deriveBits" | "crypto.webcrypto.subtle.deriveKey" | "crypto.webcrypto.subtle.digest" | "crypto.webcrypto.subtle.encapsulateBits" | "crypto.webcrypto.subtle.encapsulateKey" | "crypto.webcrypto.subtle.encrypt" | "crypto.webcrypto.subtle.exportKey" | "crypto.webcrypto.subtle.generateKey" | "crypto.webcrypto.subtle.getPublicKey" | "crypto.webcrypto.subtle.importKey" | "crypto.webcrypto.subtle.sign" | "crypto.webcrypto.subtle.unwrapKey" | "crypto.webcrypto.subtle.verify" | "crypto.webcrypto.subtle.wrapKey" | "crypto.webcrypto.getRandomValues" | "crypto.webcrypto.randomUUID" | "crypto.argon2" | "crypto.argon2Sync" | "crypto.checkPrime" | "crypto.checkPrimeSync" | "crypto.createCipher" | "crypto.createCipheriv" | "crypto.createDecipher" | "crypto.createDecipheriv" | "crypto.createDiffieHellman" | "crypto.createDiffieHellmanGroup" | "crypto.createECDH" | "crypto.createHash" | "crypto.createHmac" | "crypto.createPrivateKey" | "crypto.createPublicKey" | "crypto.createSecretKey" | "crypto.createSign" | "crypto.createVerify" | "crypto.decapsulate" | "crypto.diffieHellman" | "crypto.encapsulate" | "crypto.generateKey" | "crypto.generateKeyPair" | "crypto.generateKeyPairSync" | "crypto.generateKeySync" | "crypto.generatePrime" | "crypto.generatePrimeSync" | "crypto.getCipherInfo" | "crypto.getCiphers" | "crypto.getCurves" | "crypto.getDiffieHellman" | "crypto.getFips" | "crypto.getHashes" | "crypto.hash" | "crypto.hkdf" | "crypto.hkdfSync" | "crypto.pbkdf2" | "crypto.pbkdf2Sync" | "crypto.privateDecrypt" | "crypto.privateEncrypt" | "crypto.publicDecrypt" | "crypto.publicEncrypt" | "crypto.randomBytes" | "crypto.randomFillSync" | "crypto.randomFill" | "crypto.randomInt" | "crypto.scrypt" | "crypto.scryptSync" | "crypto.secureHeapUsed" | "crypto.setEngine" | "crypto.setFips" | "crypto.sign" | "crypto.timingSafeEqual" | "crypto.verify" | "crypto.Certificate" | "crypto.Certificate.exportChallenge" | "crypto.Certificate.exportPublicKey" | "crypto.Certificate.verifySpkac" | "crypto.Cipher" | "crypto.Decipher" | "crypto.DiffieHellman" | "crypto.DiffieHellmanGroup" | "crypto.ECDH" | "crypto.ECDH.convertKey" | "crypto.Hash()" | "new crypto.Hash()" | "crypto.Hash" | "crypto.Hmac()" | "new crypto.Hmac()" | "crypto.Hmac" | "crypto.KeyObject" | "crypto.KeyObject.from" | "crypto.Sign" | "crypto.Verify" | "crypto.X509Certificate" | "dgram" | "dgram.createSocket" | "dgram.Socket" | "diagnostics_channel" | "diagnostics_channel.hasSubscribers" | "diagnostics_channel.channel" | "diagnostics_channel.subscribe" | "diagnostics_channel.unsubscribe" | "diagnostics_channel.tracingChannel" | "diagnostics_channel.Channel" | "diagnostics_channel.TracingChannel" | "dns" | "dns.Resolver" | "dns.getServers" | "dns.lookup" | "dns.lookupService" | "dns.resolve" | "dns.resolve4" | "dns.resolve6" | "dns.resolveAny" | "dns.resolveCname" | "dns.resolveCaa" | "dns.resolveMx" | "dns.resolveNaptr" | "dns.resolveNs" | "dns.resolvePtr" | "dns.resolveSoa" | "dns.resolveSrv" | "dns.resolveTlsa" | "dns.resolveTxt" | "dns.reverse" | "dns.setDefaultResultOrder" | "dns.getDefaultResultOrder" | "dns.setServers" | "dns.promises" | "dns.promises.Resolver" | "dns.promises.cancel" | "dns.promises.getServers" | "dns.promises.lookup" | "dns.promises.lookupService" | "dns.promises.resolve" | "dns.promises.resolve4" | "dns.promises.resolve6" | "dns.promises.resolveAny" | "dns.promises.resolveCaa" | "dns.promises.resolveCname" | "dns.promises.resolveMx" | "dns.promises.resolveNaptr" | "dns.promises.resolveNs" | "dns.promises.resolvePtr" | "dns.promises.resolveSoa" | "dns.promises.resolveSrv" | "dns.promises.resolveTlsa" | "dns.promises.resolveTxt" | "dns.promises.reverse" | "dns.promises.setDefaultResultOrder" | "dns.promises.getDefaultResultOrder" | "dns.promises.setServers" | "dns/promises" | "dns/promises.Resolver" | "dns/promises.cancel" | "dns/promises.getServers" | "dns/promises.lookup" | "dns/promises.lookupService" | "dns/promises.resolve" | "dns/promises.resolve4" | "dns/promises.resolve6" | "dns/promises.resolveAny" | "dns/promises.resolveCaa" | "dns/promises.resolveCname" | "dns/promises.resolveMx" | "dns/promises.resolveNaptr" | "dns/promises.resolveNs" | "dns/promises.resolvePtr" | "dns/promises.resolveSoa" | "dns/promises.resolveSrv" | "dns/promises.resolveTlsa" | "dns/promises.resolveTxt" | "dns/promises.reverse" | "dns/promises.setDefaultResultOrder" | "dns/promises.getDefaultResultOrder" | "dns/promises.setServers" | "domain" | "domain.create" | "domain.Domain" | "events" | "events.Event" | "events.EventTarget" | "events.CustomEvent" | "events.NodeEventTarget" | "events.EventEmitter" | "events.EventEmitter.defaultMaxListeners" | "events.EventEmitter.errorMonitor" | "events.EventEmitter.captureRejections" | "events.EventEmitter.captureRejectionSymbol" | "events.EventEmitter.getEventListeners" | "events.EventEmitter.getMaxListeners" | "events.EventEmitter.once" | "events.EventEmitter.listenerCount" | "events.EventEmitter.on" | "events.EventEmitter.setMaxListeners" | "events.EventEmitter.addAbortListener" | "events.EventEmitterAsyncResource" | "events.EventEmitterAsyncResource.defaultMaxListeners" | "events.EventEmitterAsyncResource.errorMonitor" | "events.EventEmitterAsyncResource.captureRejections" | "events.EventEmitterAsyncResource.captureRejectionSymbol" | "events.EventEmitterAsyncResource.getEventListeners" | "events.EventEmitterAsyncResource.getMaxListeners" | "events.EventEmitterAsyncResource.once" | "events.EventEmitterAsyncResource.listenerCount" | "events.EventEmitterAsyncResource.on" | "events.EventEmitterAsyncResource.setMaxListeners" | "events.EventEmitterAsyncResource.addAbortListener" | "events.defaultMaxListeners" | "events.errorMonitor" | "events.captureRejections" | "events.captureRejectionSymbol" | "events.getEventListeners" | "events.getMaxListeners" | "events.once" | "events.listenerCount" | "events.on" | "events.setMaxListeners" | "events.addAbortListener" | "fs" | "fs.promises" | "fs.promises.FileHandle" | "fs.promises.access" | "fs.promises.appendFile" | "fs.promises.chmod" | "fs.promises.chown" | "fs.promises.constants" | "fs.promises.copyFile" | "fs.promises.cp" | "fs.promises.glob" | "fs.promises.lchmod" | "fs.promises.lchown" | "fs.promises.link" | "fs.promises.lstat" | "fs.promises.lutimes" | "fs.promises.mkdir" | "fs.promises.mkdtemp" | "fs.promises.mkdtempDisposable" | "fs.promises.open" | "fs.promises.opendir" | "fs.promises.readFile" | "fs.promises.readdir" | "fs.promises.readlink" | "fs.promises.realpath" | "fs.promises.rename" | "fs.promises.rm" | "fs.promises.rmdir" | "fs.promises.stat" | "fs.promises.statfs" | "fs.promises.symlink" | "fs.promises.truncate" | "fs.promises.unlink" | "fs.promises.utimes" | "fs.promises.watch" | "fs.promises.writeFile" | "fs.access" | "fs.appendFile" | "fs.chmod" | "fs.chown" | "fs.close" | "fs.copyFile" | "fs.cp" | "fs.createReadStream" | "fs.createWriteStream" | "fs.exists" | "fs.fchmod" | "fs.fchown" | "fs.fdatasync" | "fs.fstat" | "fs.fsync" | "fs.ftruncate" | "fs.futimes" | "fs.glob" | "fs.lchmod" | "fs.lchown" | "fs.link" | "fs.lstat" | "fs.lutimes" | "fs.mkdir" | "fs.mkdtemp" | "fs.native" | "fs.open" | "fs.openAsBlob" | "fs.opendir" | "fs.read" | "fs.readdir" | "fs.readFile" | "fs.readlink" | "fs.readv" | "fs.realpath" | "fs.realpath.native" | "fs.rename" | "fs.rm" | "fs.rmdir" | "fs.stat" | "fs.statfs" | "fs.symlink" | "fs.truncate" | "fs.unlink" | "fs.unwatchFile" | "fs.utimes" | "fs.watch" | "fs.watchFile" | "fs.write" | "fs.writeFile" | "fs.writev" | "fs.accessSync" | "fs.appendFileSync" | "fs.chmodSync" | "fs.chownSync" | "fs.closeSync" | "fs.copyFileSync" | "fs.cpSync" | "fs.existsSync" | "fs.fchmodSync" | "fs.fchownSync" | "fs.fdatasyncSync" | "fs.fstatSync" | "fs.fsyncSync" | "fs.ftruncateSync" | "fs.futimesSync" | "fs.globSync" | "fs.lchmodSync" | "fs.lchownSync" | "fs.linkSync" | "fs.lstatSync" | "fs.lutimesSync" | "fs.mkdirSync" | "fs.mkdtempSync" | "fs.mkdtempDisposableSync" | "fs.opendirSync" | "fs.openSync" | "fs.readdirSync" | "fs.readFileSync" | "fs.readlinkSync" | "fs.readSync" | "fs.readvSync" | "fs.realpathSync" | "fs.realpathSync.native" | "fs.renameSync" | "fs.rmdirSync" | "fs.rmSync" | "fs.statfsSync" | "fs.statSync" | "fs.symlinkSync" | "fs.truncateSync" | "fs.unlinkSync" | "fs.utimesSync" | "fs.writeFileSync" | "fs.writeSync" | "fs.writevSync" | "fs.constants" | "fs.Dir" | "fs.Dirent" | "fs.FSWatcher" | "fs.StatWatcher" | "fs.ReadStream" | "fs.Stats()" | "new fs.Stats()" | "fs.Stats" | "fs.StatFs" | "fs.WriteStream" | "fs.Utf8Stream" | "fs.common_objects" | "fs/promises" | "fs/promises.FileHandle" | "fs/promises.access" | "fs/promises.appendFile" | "fs/promises.chmod" | "fs/promises.chown" | "fs/promises.constants" | "fs/promises.copyFile" | "fs/promises.cp" | "fs/promises.glob" | "fs/promises.lchmod" | "fs/promises.lchown" | "fs/promises.link" | "fs/promises.lstat" | "fs/promises.lutimes" | "fs/promises.mkdir" | "fs/promises.mkdtemp" | "fs/promises.mkdtempDisposable" | "fs/promises.open" | "fs/promises.opendir" | "fs/promises.readFile" | "fs/promises.readdir" | "fs/promises.readlink" | "fs/promises.realpath" | "fs/promises.rename" | "fs/promises.rm" | "fs/promises.rmdir" | "fs/promises.stat" | "fs/promises.statfs" | "fs/promises.symlink" | "fs/promises.truncate" | "fs/promises.unlink" | "fs/promises.utimes" | "fs/promises.watch" | "fs/promises.writeFile" | "http2" | "http2.constants" | "http2.sensitiveHeaders" | "http2.createServer" | "http2.createSecureServer" | "http2.connect" | "http2.getDefaultSettings" | "http2.getPackedSettings" | "http2.getUnpackedSettings" | "http2.performServerHandshake" | "http2.Http2Session" | "http2.ServerHttp2Session" | "http2.ClientHttp2Session" | "http2.Http2Stream" | "http2.ClientHttp2Stream" | "http2.ServerHttp2Stream" | "http2.Http2Server" | "http2.Http2SecureServer" | "http2.Http2ServerRequest" | "http2.Http2ServerResponse" | "http" | "http.METHODS" | "http.STATUS_CODES" | "http.globalAgent" | "http.maxHeaderSize" | "http.createServer" | "http.get" | "http.request" | "http.validateHeaderName" | "http.validateHeaderValue" | "http.setMaxIdleHTTPParsers" | "http.Agent()" | "http.Agent" | "http.ClientRequest()" | "http.ClientRequest" | "http.Server()" | "http.Server" | "http.ServerResponse()" | "http.ServerResponse" | "http.IncomingMessage()" | "http.IncomingMessage" | "http.OutgoingMessage()" | "http.OutgoingMessage" | "http.WebSocket()" | "http.WebSocket" | "_http_agent" | "_http_client" | "_http_common" | "_http_incoming" | "_http_outgoing" | "_http_server" | "https" | "https.globalAgent" | "https.createServer" | "https.get" | "https.request" | "https.Agent" | "https.Server" | "inspector" | "inspector.Session" | "inspector.Network.dataReceived" | "inspector.Network.dataSent" | "inspector.Network.loadingFailed" | "inspector.Network.loadingFinished" | "inspector.Network.requestWillBeSent" | "inspector.Network.responseReceived" | "inspector.Network.webSocketCreated" | "inspector.Network.webSocketHandshakeResponseReceived" | "inspector.Network.webSocketClosed" | "inspector.NetworkResources.put" | "inspector.console" | "inspector.close" | "inspector.open" | "inspector.url" | "inspector.waitForDebugger" | "inspector/promises" | "inspector/promises.Session" | "inspector/promises.Network.dataReceived" | "inspector/promises.Network.dataSent" | "inspector/promises.Network.loadingFailed" | "inspector/promises.Network.loadingFinished" | "inspector/promises.Network.requestWillBeSent" | "inspector/promises.Network.responseReceived" | "inspector/promises.Network.webSocketCreated" | "inspector/promises.Network.webSocketHandshakeResponseReceived" | "inspector/promises.Network.webSocketClosed" | "inspector/promises.NetworkResources.put" | "inspector/promises.console" | "inspector/promises.close" | "inspector/promises.open" | "inspector/promises.url" | "inspector/promises.waitForDebugger" | "module.builtinModules" | "module.constants.compileCacheStatus" | "module.createRequire" | "module.createRequireFromPath" | "module.enableCompileCache" | "module.findPackageJSON" | "module.flushCompileCache" | "module.getCompileCacheDir" | "module.getSourceMapsSupport" | "module.isBuiltin" | "module.registerHooks" | "module.register" | "module.setSourceMapsSupport" | "module.stripTypeScriptTypes" | "module.syncBuiltinESMExports" | "module.findSourceMap" | "module.SourceMap" | "module.Module.builtinModules" | "module.Module.createRequire" | "module.Module.createRequireFromPath" | "module.Module.enableCompileCache" | "module.Module.findPackageJSON" | "module.Module.flushCompileCache" | "module.Module.getCompileCacheDir" | "module.Module.getSourceMapsSupport" | "module.Module.isBuiltin" | "module.Module.registerHooks" | "module.Module.register" | "module.Module.setSourceMapsSupport" | "module.Module.stripTypeScriptTypes" | "module.Module.syncBuiltinESMExports" | "module.Module.findSourceMap" | "module.Module.SourceMap" | "net" | "net.connect" | "net.createConnection" | "net.createServer" | "net.getDefaultAutoSelectFamily" | "net.setDefaultAutoSelectFamily" | "net.getDefaultAutoSelectFamilyAttemptTimeout" | "net.setDefaultAutoSelectFamilyAttemptTimeout" | "net.isIP" | "net.isIPv4" | "net.isIPv6" | "net.BlockList" | "net.BlockList.isBlockList" | "net.SocketAddress" | "net.SocketAddress.parse" | "net.Server" | "net.Socket" | "os" | "os.EOL" | "os.constants" | "os.constants.priority" | "os.devNull" | "os.availableParallelism" | "os.arch" | "os.cpus" | "os.endianness" | "os.freemem" | "os.getPriority" | "os.homedir" | "os.hostname" | "os.loadavg" | "os.machine" | "os.networkInterfaces" | "os.platform" | "os.release" | "os.setPriority" | "os.tmpdir" | "os.totalmem" | "os.type" | "os.uptime" | "os.userInfo" | "os.version" | "path" | "path.posix" | "path.posix.delimiter" | "path.posix.sep" | "path.posix.basename" | "path.posix.dirname" | "path.posix.extname" | "path.posix.format" | "path.posix.matchesGlob" | "path.posix.isAbsolute" | "path.posix.join" | "path.posix.normalize" | "path.posix.parse" | "path.posix.relative" | "path.posix.resolve" | "path.posix.toNamespacedPath" | "path.win32" | "path.win32.delimiter" | "path.win32.sep" | "path.win32.basename" | "path.win32.dirname" | "path.win32.extname" | "path.win32.format" | "path.win32.matchesGlob" | "path.win32.isAbsolute" | "path.win32.join" | "path.win32.normalize" | "path.win32.parse" | "path.win32.relative" | "path.win32.resolve" | "path.win32.toNamespacedPath" | "path.delimiter" | "path.sep" | "path.basename" | "path.dirname" | "path.extname" | "path.format" | "path.matchesGlob" | "path.isAbsolute" | "path.join" | "path.normalize" | "path.parse" | "path.relative" | "path.resolve" | "path.toNamespacedPath" | "path/posix" | "path/posix.delimiter" | "path/posix.sep" | "path/posix.basename" | "path/posix.dirname" | "path/posix.extname" | "path/posix.format" | "path/posix.matchesGlob" | "path/posix.isAbsolute" | "path/posix.join" | "path/posix.normalize" | "path/posix.parse" | "path/posix.relative" | "path/posix.resolve" | "path/posix.toNamespacedPath" | "path/win32" | "path/win32.delimiter" | "path/win32.sep" | "path/win32.basename" | "path/win32.dirname" | "path/win32.extname" | "path/win32.format" | "path/win32.matchesGlob" | "path/win32.isAbsolute" | "path/win32.join" | "path/win32.normalize" | "path/win32.parse" | "path/win32.relative" | "path/win32.resolve" | "path/win32.toNamespacedPath" | "perf_hooks" | "perf_hooks.performance" | "perf_hooks.performance.clearMarks" | "perf_hooks.performance.clearMeasures" | "perf_hooks.performance.clearResourceTimings" | "perf_hooks.performance.eventLoopUtilization" | "perf_hooks.performance.getEntries" | "perf_hooks.performance.getEntriesByName" | "perf_hooks.performance.getEntriesByType" | "perf_hooks.performance.mark" | "perf_hooks.performance.markResourceTiming" | "perf_hooks.performance.measure" | "perf_hooks.performance.nodeTiming" | "perf_hooks.performance.nodeTiming.bootstrapComplete" | "perf_hooks.performance.nodeTiming.environment" | "perf_hooks.performance.nodeTiming.idleTime" | "perf_hooks.performance.nodeTiming.loopExit" | "perf_hooks.performance.nodeTiming.loopStart" | "perf_hooks.performance.nodeTiming.nodeStart" | "perf_hooks.performance.nodeTiming.uvMetricsInfo" | "perf_hooks.performance.nodeTiming.v8Start" | "perf_hooks.performance.now" | "perf_hooks.performance.onresourcetimingbufferfull" | "perf_hooks.performance.setResourceTimingBufferSize" | "perf_hooks.performance.timeOrigin" | "perf_hooks.performance.timerify" | "perf_hooks.performance.toJSON" | "perf_hooks.createHistogram" | "perf_hooks.eventLoopUtilization" | "perf_hooks.timerify" | "perf_hooks.monitorEventLoopDelay" | "perf_hooks.PerformanceEntry" | "perf_hooks.PerformanceMark" | "perf_hooks.PerformanceMeasure" | "perf_hooks.PerformanceNodeEntry" | "perf_hooks.PerformanceNodeTiming" | "perf_hooks.PerformanceResourceTiming" | "perf_hooks.PerformanceObserver" | "perf_hooks.PerformanceObserverEntryList" | "perf_hooks.Histogram" | "perf_hooks.IntervalHistogram" | "perf_hooks.RecordableHistogram" | "punycode" | "punycode.ucs2" | "punycode.version" | "punycode.decode" | "punycode.encode" | "punycode.toASCII" | "punycode.toUnicode" | "querystring" | "querystring.decode" | "querystring.encode" | "querystring.escape" | "querystring.parse" | "querystring.stringify" | "querystring.unescape" | "readline" | "readline.promises" | "readline.promises.createInterface" | "readline.promises.Interface" | "readline.promises.Readline" | "readline.clearLine" | "readline.clearScreenDown" | "readline.createInterface" | "readline.cursorTo" | "readline.moveCursor" | "readline.Interface" | "readline.emitKeypressEvents" | "readline.InterfaceConstructor" | "readline/promises" | "readline/promises.createInterface" | "readline/promises.Interface" | "readline/promises.Readline" | "repl" | "repl.start" | "repl.writer" | "repl.REPLServer()" | "repl.REPLServer" | "repl.REPL_MODE_MAGIC" | "repl.REPL_MODE_SLOPPY" | "repl.REPL_MODE_STRICT" | "repl.Recoverable()" | "repl.Recoverable" | "repl.builtinModules" | "sea" | "sea.isSea" | "sea.getAsset" | "sea.getAssetAsBlob" | "sea.getAssetKeys" | "sea.getRawAsset" | "sea.sea.isSea" | "sea.sea.getAsset" | "sea.sea.getAssetAsBlob" | "sea.sea.getAssetKeys" | "sea.sea.getRawAsset" | "stream" | "stream.promises" | "stream.promises.pipeline" | "stream.promises.finished" | "stream.finished" | "stream.pipeline" | "stream.compose" | "stream.duplexPair" | "stream.Readable" | "stream.Readable.from" | "stream.Readable.isDisturbed" | "stream.Readable.fromWeb" | "stream.Readable.toWeb" | "stream.Writable" | "stream.Writable.fromWeb" | "stream.Writable.toWeb" | "stream.Duplex" | "stream.Duplex.from" | "stream.Duplex.fromWeb" | "stream.Duplex.toWeb" | "stream.Transform" | "stream.isErrored" | "stream.isReadable" | "stream.addAbortSignal" | "stream.getDefaultHighWaterMark" | "stream.setDefaultHighWaterMark" | "stream/promises.pipeline" | "stream/promises.finished" | "stream/web" | "stream/web.ReadableStream" | "stream/web.ReadableStream.from" | "stream/web.ReadableStreamDefaultReader" | "stream/web.ReadableStreamBYOBReader" | "stream/web.ReadableStreamDefaultController" | "stream/web.ReadableByteStreamController" | "stream/web.ReadableStreamBYOBRequest" | "stream/web.WritableStream" | "stream/web.WritableStreamDefaultWriter" | "stream/web.WritableStreamDefaultController" | "stream/web.TransformStream" | "stream/web.TransformStreamDefaultController" | "stream/web.ByteLengthQueuingStrategy" | "stream/web.CountQueuingStrategy" | "stream/web.TextEncoderStream" | "stream/web.TextDecoderStream" | "stream/web.CompressionStream" | "stream/web.DecompressionStream" | "stream/consumers" | "stream/consumers.arrayBuffer" | "stream/consumers.blob" | "stream/consumers.buffer" | "stream/consumers.json" | "stream/consumers.text" | "_stream_duplex" | "_stream_passthrough" | "_stream_readable" | "_stream_transform" | "_stream_wrap" | "_stream_writable" | "string_decoder" | "string_decoder.StringDecoder" | "sqlite" | "sqlite.constants" | "sqlite.constants.SQLITE_CHANGESET_OMIT" | "sqlite.constants.SQLITE_CHANGESET_REPLACE" | "sqlite.constants.SQLITE_CHANGESET_ABORT" | "sqlite.backup" | "sqlite.DatabaseSync" | "sqlite.Session" | "sqlite.StatementSync" | "sqlite.SQLITE_CHANGESET_OMIT" | "sqlite.SQLITE_CHANGESET_REPLACE" | "sqlite.SQLITE_CHANGESET_ABORT" | "test" | "test.after" | "test.afterEach" | "test.assert" | "test.assert.register" | "test.before" | "test.beforeEach" | "test.describe" | "test.describe.only" | "test.describe.skip" | "test.describe.todo" | "test.it" | "test.it.only" | "test.it.skip" | "test.it.todo" | "test.mock" | "test.mock.fn" | "test.mock.getter" | "test.mock.method" | "test.mock.module" | "test.mock.property" | "test.mock.reset" | "test.mock.restoreAll" | "test.mock.setter" | "test.mock.timers" | "test.mock.timers.enable" | "test.mock.timers.reset" | "test.mock.timers.tick" | "test.only" | "test.run" | "test.snapshot" | "test.snapshot.setDefaultSnapshotSerializers" | "test.snapshot.setResolveSnapshotPath" | "test.skip" | "test.suite" | "test.test" | "test.test.only" | "test.test.skip" | "test.test.todo" | "test.todo" | "timers" | "timers.Immediate" | "timers.Timeout" | "timers.setImmediate" | "timers.clearImmediate" | "timers.setInterval" | "timers.clearInterval" | "timers.setTimeout" | "timers.clearTimeout" | "timers.promises" | "timers.promises.setTimeout" | "timers.promises.setImmediate" | "timers.promises.setInterval" | "timers.promises.scheduler.wait" | "timers.promises.scheduler.yield" | "timers/promises" | "timers/promises.setTimeout" | "timers/promises.setImmediate" | "timers/promises.setInterval" | "timers/promises.scheduler.wait" | "timers/promises.scheduler.yield" | "tls" | "tls.checkServerIdentity" | "tls.connect" | "tls.createSecureContext" | "tls.createSecurePair" | "tls.createServer" | "tls.CryptoStream" | "tls.DEFAULT_CIPHERS" | "tls.DEFAULT_ECDH_CURVE" | "tls.DEFAULT_MAX_VERSION" | "tls.DEFAULT_MIN_VERSION" | "tls.getCACertificates" | "tls.getCiphers" | "tls.rootCertificates" | "tls.SecureContext" | "tls.SecurePair" | "tls.Server" | "tls.setDefaultCACertificates" | "tls.TLSSocket" | "_tls_common" | "_tls_wrap" | "trace_events" | "trace_events.createTracing" | "trace_events.getEnabledCategories" | "tty" | "tty.isatty" | "tty.ReadStream" | "tty.WriteStream" | "url" | "url.domainToASCII" | "url.domainToUnicode" | "url.fileURLToPath" | "url.format" | "url.pathToFileURL" | "url.urlToHttpOptions" | "url.URL" | "url.URL.canParse" | "url.URL.createObjectURL" | "url.URL.revokeObjectURL" | "url.URLPattern" | "url.URLSearchParams" | "url.Url" | "util.promisify" | "util.promisify.custom" | "util.callbackify" | "util.debuglog" | "util.debug" | "util.deprecate" | "util.diff" | "util.format" | "util.formatWithOptions" | "util.getCallSite" | "util.getCallSites" | "util.getSystemErrorName" | "util.getSystemErrorMap" | "util.getSystemErrorMessage" | "util.inherits" | "util.inspect" | "util.inspect.custom" | "util.inspect.defaultOptions" | "util.inspect.replDefaults" | "util.isDeepStrictEqual" | "util.parseArgs" | "util.parseEnv" | "util.setTraceSigInt" | "util.stripVTControlCharacters" | "util.styleText" | "util.toUSVString" | "util.transferableAbortController" | "util.transferableAbortSignal" | "util.aborted" | "util.MIMEType" | "util.MIMEParams" | "util.TextDecoder" | "util.TextEncoder" | "util.types" | "util.types.isExternal" | "util.types.isDate" | "util.types.isArgumentsObject" | "util.types.isBigIntObject" | "util.types.isBooleanObject" | "util.types.isNumberObject" | "util.types.isStringObject" | "util.types.isSymbolObject" | "util.types.isNativeError" | "util.types.isRegExp" | "util.types.isAsyncFunction" | "util.types.isGeneratorFunction" | "util.types.isGeneratorObject" | "util.types.isPromise" | "util.types.isMap" | "util.types.isSet" | "util.types.isMapIterator" | "util.types.isSetIterator" | "util.types.isWeakMap" | "util.types.isWeakSet" | "util.types.isArrayBuffer" | "util.types.isDataView" | "util.types.isSharedArrayBuffer" | "util.types.isProxy" | "util.types.isModuleNamespaceObject" | "util.types.isAnyArrayBuffer" | "util.types.isBoxedPrimitive" | "util.types.isArrayBufferView" | "util.types.isTypedArray" | "util.types.isUint8Array" | "util.types.isUint8ClampedArray" | "util.types.isUint16Array" | "util.types.isUint32Array" | "util.types.isInt8Array" | "util.types.isInt16Array" | "util.types.isInt32Array" | "util.types.isFloat16Array" | "util.types.isFloat32Array" | "util.types.isFloat64Array" | "util.types.isBigInt64Array" | "util.types.isBigUint64Array" | "util.types.isKeyObject" | "util.types.isCryptoKey" | "util.types.isWebAssemblyCompiledModule" | "util._extend" | "util.isArray" | "util.isBoolean" | "util.isBuffer" | "util.isDate" | "util.isError" | "util.isFunction" | "util.isNull" | "util.isNullOrUndefined" | "util.isNumber" | "util.isObject" | "util.isPrimitive" | "util.isRegExp" | "util.isString" | "util.isSymbol" | "util.isUndefined" | "util.log" | "util" | "util/types" | "util/types.isExternal" | "util/types.isDate" | "util/types.isArgumentsObject" | "util/types.isBigIntObject" | "util/types.isBooleanObject" | "util/types.isNumberObject" | "util/types.isStringObject" | "util/types.isSymbolObject" | "util/types.isNativeError" | "util/types.isRegExp" | "util/types.isAsyncFunction" | "util/types.isGeneratorFunction" | "util/types.isGeneratorObject" | "util/types.isPromise" | "util/types.isMap" | "util/types.isSet" | "util/types.isMapIterator" | "util/types.isSetIterator" | "util/types.isWeakMap" | "util/types.isWeakSet" | "util/types.isArrayBuffer" | "util/types.isDataView" | "util/types.isSharedArrayBuffer" | "util/types.isProxy" | "util/types.isModuleNamespaceObject" | "util/types.isAnyArrayBuffer" | "util/types.isBoxedPrimitive" | "util/types.isArrayBufferView" | "util/types.isTypedArray" | "util/types.isUint8Array" | "util/types.isUint8ClampedArray" | "util/types.isUint16Array" | "util/types.isUint32Array" | "util/types.isInt8Array" | "util/types.isInt16Array" | "util/types.isInt32Array" | "util/types.isFloat16Array" | "util/types.isFloat32Array" | "util/types.isFloat64Array" | "util/types.isBigInt64Array" | "util/types.isBigUint64Array" | "util/types.isKeyObject" | "util/types.isCryptoKey" | "util/types.isWebAssemblyCompiledModule" | "v8" | "v8.serialize" | "v8.deserialize" | "v8.Serializer" | "v8.Deserializer" | "v8.DefaultSerializer" | "v8.DefaultDeserializer" | "v8.promiseHooks" | "v8.promiseHooks.onInit" | "v8.promiseHooks.onSettled" | "v8.promiseHooks.onBefore" | "v8.promiseHooks.onAfter" | "v8.promiseHooks.createHook" | "v8.startupSnapshot" | "v8.startupSnapshot.addSerializeCallback" | "v8.startupSnapshot.addDeserializeCallback" | "v8.startupSnapshot.setDeserializeMainFunction" | "v8.startupSnapshot.isBuildingSnapshot" | "v8.cachedDataVersionTag" | "v8.getHeapCodeStatistics" | "v8.getHeapSnapshot" | "v8.getHeapSpaceStatistics" | "v8.getHeapStatistics" | "v8.isStringOneByteRepresentation" | "v8.queryObjects" | "v8.setFlagsFromString" | "v8.stopCoverage" | "v8.takeCoverage" | "v8.writeHeapSnapshot" | "v8.setHeapSnapshotNearHeapLimit" | "v8.GCProfiler" | "v8.startCpuProfile" | "vm.constants" | "vm.compileFunction" | "vm.createContext" | "vm.isContext" | "vm.measureMemory" | "vm.runInContext" | "vm.runInNewContext" | "vm.runInThisContext" | "vm.Script" | "vm.Module" | "vm.SourceTextModule" | "vm.SyntheticModule" | "vm" | "wasi.WASI" | "wasi" | "worker_threads" | "worker_threads.parentPort" | "worker_threads.resourceLimits" | "worker_threads.SHARE_ENV" | "worker_threads.threadId" | "worker_threads.threadName" | "worker_threads.workerData" | "worker_threads.getEnvironmentData" | "worker_threads.getHeapStatistics" | "worker_threads.markAsUncloneable" | "worker_threads.markAsUntransferable" | "worker_threads.isInternalThread" | "worker_threads.isMainThread" | "worker_threads.isMarkedAsUntransferable" | "worker_threads.locks" | "worker_threads.locks.request" | "worker_threads.locks.query" | "worker_threads.moveMessagePortToContext" | "worker_threads.postMessageToThread" | "worker_threads.receiveMessageOnPort" | "worker_threads.setEnvironmentData" | "worker_threads.BroadcastChannel" | "worker_threads.MessageChannel" | "worker_threads.MessagePort" | "worker_threads.Worker" | "zlib.brotliCompress" | "zlib.brotliCompressSync" | "zlib.brotliDecompress" | "zlib.brotliDecompressSync" | "zlib.constants" | "zlib.constants.ZSTD_e_continue" | "zlib.constants.ZSTD_e_flush" | "zlib.constants.ZSTD_e_end" | "zlib.constants.ZSTD_fast" | "zlib.constants.ZSTD_dfast" | "zlib.constants.ZSTD_greedy" | "zlib.constants.ZSTD_lazy" | "zlib.constants.ZSTD_lazy2" | "zlib.constants.ZSTD_btlazy2" | "zlib.constants.ZSTD_btopt" | "zlib.constants.ZSTD_btultra" | "zlib.constants.ZSTD_btultra2" | "zlib.constants.ZSTD_c_compressionLevel" | "zlib.constants.ZSTD_c_windowLog" | "zlib.constants.ZSTD_c_hashLog" | "zlib.constants.ZSTD_c_chainLog" | "zlib.constants.ZSTD_c_searchLog" | "zlib.constants.ZSTD_c_minMatch" | "zlib.constants.ZSTD_c_targetLength" | "zlib.constants.ZSTD_c_strategy" | "zlib.constants.ZSTD_c_enableLongDistanceMatching" | "zlib.constants.ZSTD_c_ldmHashLog" | "zlib.constants.ZSTD_c_ldmMinMatch" | "zlib.constants.ZSTD_c_ldmBucketSizeLog" | "zlib.constants.ZSTD_c_ldmHashRateLog" | "zlib.constants.ZSTD_c_contentSizeFlag" | "zlib.constants.ZSTD_c_checksumFlag" | "zlib.constants.ZSTD_c_dictIDFlag" | "zlib.constants.ZSTD_c_nbWorkers" | "zlib.constants.ZSTD_c_jobSize" | "zlib.constants.ZSTD_c_overlapLog" | "zlib.constants.ZSTD_d_windowLogMax" | "zlib.constants.ZSTD_CLEVEL_DEFAULT" | "zlib.constants.ZSTD_error_no_error" | "zlib.constants.ZSTD_error_GENERIC" | "zlib.constants.ZSTD_error_prefix_unknown" | "zlib.constants.ZSTD_error_version_unsupported" | "zlib.constants.ZSTD_error_frameParameter_unsupported" | "zlib.constants.ZSTD_error_frameParameter_windowTooLarge" | "zlib.constants.ZSTD_error_corruption_detected" | "zlib.constants.ZSTD_error_checksum_wrong" | "zlib.constants.ZSTD_error_literals_headerWrong" | "zlib.constants.ZSTD_error_dictionary_corrupted" | "zlib.constants.ZSTD_error_dictionary_wrong" | "zlib.constants.ZSTD_error_dictionaryCreation_failed" | "zlib.constants.ZSTD_error_parameter_unsupported" | "zlib.constants.ZSTD_error_parameter_combination_unsupported" | "zlib.constants.ZSTD_error_parameter_outOfBound" | "zlib.constants.ZSTD_error_tableLog_tooLarge" | "zlib.constants.ZSTD_error_maxSymbolValue_tooLarge" | "zlib.constants.ZSTD_error_maxSymbolValue_tooSmall" | "zlib.constants.ZSTD_error_stabilityCondition_notRespected" | "zlib.constants.ZSTD_error_stage_wrong" | "zlib.constants.ZSTD_error_init_missing" | "zlib.constants.ZSTD_error_memory_allocation" | "zlib.constants.ZSTD_error_workSpace_tooSmall" | "zlib.constants.ZSTD_error_dstSize_tooSmall" | "zlib.constants.ZSTD_error_srcSize_wrong" | "zlib.constants.ZSTD_error_dstBuffer_null" | "zlib.constants.ZSTD_error_noForwardProgress_destFull" | "zlib.constants.ZSTD_error_noForwardProgress_inputEmpty" | "zlib.crc32" | "zlib.createBrotliCompress" | "zlib.createBrotliDecompress" | "zlib.createDeflate" | "zlib.createDeflateRaw" | "zlib.createGunzip" | "zlib.createGzip" | "zlib.createInflate" | "zlib.createInflateRaw" | "zlib.createUnzip" | "zlib.createZstdCompress" | "zlib.createZstdDecompress" | "zlib.deflate" | "zlib.deflateRaw" | "zlib.deflateRawSync" | "zlib.deflateSync" | "zlib.gunzip" | "zlib.gunzipSync" | "zlib.gzip" | "zlib.gzipSync" | "zlib.inflate" | "zlib.inflateRaw" | "zlib.inflateRawSync" | "zlib.inflateSync" | "zlib.unzip" | "zlib.unzipSync" | "zlib.zstdCompress" | "zlib.zstdCompressSync" | "zlib.zstdDecompress" | "zlib.zstdDecompressSync" | "zlib.BrotliCompress()" | "zlib.BrotliCompress" | "zlib.BrotliDecompress()" | "zlib.BrotliDecompress" | "zlib.Deflate()" | "zlib.Deflate" | "zlib.DeflateRaw()" | "zlib.DeflateRaw" | "zlib.Gunzip()" | "zlib.Gunzip" | "zlib.Gzip()" | "zlib.Gzip" | "zlib.Inflate()" | "zlib.Inflate" | "zlib.InflateRaw()" | "zlib.InflateRaw" | "zlib.Unzip()" | "zlib.Unzip" | "zlib.ZstdCompress" | "zlib.ZstdDecompress" | "zlib.ZstdOptions" | "zlib" | "import.meta.resolve" | "import.meta.dirname" | "import.meta.filename" | "import.meta.main")[];
9883
10116
  }]; // ----- node/prefer-global/buffer -----
9884
10117
  type NodePreferGlobalBuffer = [] | [("always" | "never")]; // ----- node/prefer-global/console -----
9885
10118
  type NodePreferGlobalConsole = [] | [("always" | "never")]; // ----- node/prefer-global/crypto -----
@@ -12692,31 +12925,29 @@ type Quotes = [] | [("single" | "double" | "backtick")] | [("single" | "double"
12692
12925
  avoidEscape?: boolean;
12693
12926
  allowTemplateLiterals?: boolean;
12694
12927
  })]; // ----- radix -----
12695
- type Radix = [] | [("always" | "as-needed")]; // ----- react-dom/no-unknown-property -----
12696
- type ReactDomNoUnknownProperty = [] | [{
12697
- ignore?: string[];
12698
- requireDataLowercase?: boolean;
12699
- }]; // ----- react-refresh/only-export-components -----
12928
+ type Radix = [] | [("always" | "as-needed")]; // ----- react-refresh/only-export-components -----
12700
12929
  type ReactRefreshOnlyExportComponents = [] | [{
12701
12930
  extraHOCs?: string[];
12702
12931
  allowExportNames?: string[];
12703
12932
  allowConstantExport?: boolean;
12704
12933
  checkJS?: boolean;
12934
+ }]; // ----- react/dom-no-unknown-property -----
12935
+ type ReactDomNoUnknownProperty = [] | [{
12936
+ ignore?: string[];
12937
+ requireDataLowercase?: boolean;
12705
12938
  }]; // ----- react/exhaustive-deps -----
12706
12939
  type ReactExhaustiveDeps = [] | [{
12707
12940
  additionalHooks?: string;
12708
12941
  enableDangerousAutofixThisMayCauseInfiniteLoops?: boolean;
12709
12942
  experimental_autoDependenciesHooks?: string[];
12710
12943
  requireExplicitEffectDeps?: boolean;
12711
- }]; // ----- react/jsx-shorthand-boolean -----
12712
- type ReactJsxShorthandBoolean = [] | [(-1 | 1)]; // ----- react/jsx-shorthand-fragment -----
12713
- type ReactJsxShorthandFragment = [] | [(-1 | 1)]; // ----- react/no-unstable-default-props -----
12714
- type ReactNoUnstableDefaultProps = [] | [{
12715
- safeDefaultProps?: string[];
12716
- }]; // ----- react/no-useless-fragment -----
12717
- type ReactNoUselessFragment = [] | [{
12944
+ }]; // ----- react/jsx-no-useless-fragment -----
12945
+ type ReactJsxNoUselessFragment = [] | [{
12718
12946
  allowEmptyFragment?: boolean;
12719
12947
  allowExpressions?: boolean;
12948
+ }]; // ----- react/no-unstable-default-props -----
12949
+ type ReactNoUnstableDefaultProps = [] | [{
12950
+ safeDefaultProps?: string[];
12720
12951
  }]; // ----- react/rules-of-hooks -----
12721
12952
  type ReactRulesOfHooks = [] | [{
12722
12953
  additionalHooks?: string;
@@ -12725,6 +12956,23 @@ type ReactUseState = [] | [{
12725
12956
  enforceAssignment?: boolean;
12726
12957
  enforceLazyInitialization?: boolean;
12727
12958
  enforceSetterName?: boolean;
12959
+ }]; // ----- react/x-exhaustive-deps -----
12960
+ type ReactXExhaustiveDeps = [] | [{
12961
+ additionalHooks?: string;
12962
+ enableDangerousAutofixThisMayCauseInfiniteLoops?: boolean;
12963
+ experimental_autoDependenciesHooks?: string[];
12964
+ requireExplicitEffectDeps?: boolean;
12965
+ }]; // ----- react/x-no-unstable-default-props -----
12966
+ type ReactXNoUnstableDefaultProps = [] | [{
12967
+ safeDefaultProps?: string[];
12968
+ }]; // ----- react/x-rules-of-hooks -----
12969
+ type ReactXRulesOfHooks = [] | [{
12970
+ additionalHooks?: string;
12971
+ }]; // ----- react/x-use-state -----
12972
+ type ReactXUseState = [] | [{
12973
+ enforceAssignment?: boolean;
12974
+ enforceLazyInitialization?: boolean;
12975
+ enforceSetterName?: boolean;
12728
12976
  }]; // ----- regexp/hexadecimal-escape -----
12729
12977
  type RegexpHexadecimalEscape = [] | [("always" | "never")]; // ----- regexp/letter-case -----
12730
12978
  type RegexpLetterCase = [] | [{
@@ -16970,7 +17218,7 @@ interface OptionsStylistic {
16970
17218
  */
16971
17219
  stylistic?: boolean | StylisticConfig;
16972
17220
  }
16973
- interface StylisticConfig extends Pick<StylisticCustomizeOptions, 'indent' | 'quotes' | 'jsx' | 'semi'> {
17221
+ interface StylisticConfig extends Pick<StylisticCustomizeOptions, 'braceStyle' | 'indent' | 'quotes' | 'jsx' | 'semi'> {
16974
17222
  /**
16975
17223
  * 禁用了一些带有主观色彩的规则。
16976
17224
  *
@@ -17271,10 +17519,6 @@ interface OptionsConfig extends OptionsComponentExts, OptionsProjectType {
17271
17519
  //#region src/factory.d.ts
17272
17520
  declare const defaultPluginRenaming: {
17273
17521
  '@eslint-react': string;
17274
- '@eslint-react/dom': string;
17275
- '@eslint-react/naming-convention': string;
17276
- '@eslint-react/rsc': string;
17277
- '@eslint-react/web-api': string;
17278
17522
  '@next/next': string;
17279
17523
  '@stylistic': string;
17280
17524
  '@typescript-eslint': string;