@sxzz/eslint-config 4.5.1 → 5.0.0-beta.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (3) hide show
  1. package/dist/index.d.ts +627 -295
  2. package/dist/index.js +869 -1067
  3. package/package.json +38 -32
package/dist/index.d.ts CHANGED
@@ -1,31 +1,33 @@
1
1
  import { Linter } from 'eslint';
2
- import * as _unocss_eslint_plugin from '@unocss/eslint-plugin';
3
- import * as eslint_plugin_n from 'eslint-plugin-n';
4
- import * as eslint_plugin_sxzz from 'eslint-plugin-sxzz';
5
- import * as eslint_plugin_antfu from 'eslint-plugin-antfu';
6
- import _configCommand from 'eslint-plugin-command/config';
7
- export { default as configComments } from '@eslint-community/eslint-plugin-eslint-comments/configs';
2
+ export { default as pluginAntfu } from 'eslint-plugin-antfu';
3
+ export { default as pluginSxzz } from 'eslint-plugin-sxzz';
4
+ export { default as pluginMarkdown } from '@eslint/markdown';
5
+ export { default as tseslint } from 'typescript-eslint';
6
+ export { default as pluginUnicorn } from 'eslint-plugin-unicorn';
7
+ export { default as pluginVue } from 'eslint-plugin-vue';
8
+ export { default as pluginNode } from 'eslint-plugin-n';
9
+ export { default as pluginPerfectionist } from 'eslint-plugin-perfectionist';
10
+ export { default as pluginPrettier } from 'eslint-plugin-prettier';
11
+ export { default as pluginPrettierRecommended } from 'eslint-plugin-prettier/recommended';
12
+ export { default as pluginUnusedImports } from 'eslint-plugin-unused-imports';
13
+ export { default as pluginJsdoc } from 'eslint-plugin-jsdoc';
14
+ export { default as pluginIgnore } from 'eslint-config-flat-gitignore';
8
15
  import * as eslintPluginImportX from 'eslint-plugin-import-x';
9
16
  export { eslintPluginImportX as pluginImport };
10
17
  import * as eslintPluginJsonc from 'eslint-plugin-jsonc';
11
18
  export { eslintPluginJsonc as pluginJsonc };
12
19
  import * as eslintPluginYml from 'eslint-plugin-yml';
13
20
  export { eslintPluginYml as pluginYml };
21
+ export { default as configJs } from '@eslint/js';
22
+ export { default as configComments } from '@eslint-community/eslint-plugin-eslint-comments/configs';
23
+ export { default as configPrettier } from 'eslint-config-prettier';
24
+ export { default as configCommand } from 'eslint-plugin-command/config';
14
25
  import * as vueEslintParser from 'vue-eslint-parser';
15
26
  export { vueEslintParser as parserVue };
16
27
  import * as yamlEslintParser from 'yaml-eslint-parser';
17
28
  export { yamlEslintParser as parserYml };
18
29
  import * as jsoncEslintParser from 'jsonc-eslint-parser';
19
30
  export { jsoncEslintParser as parserJsonc };
20
- export { default as tseslint } from 'typescript-eslint';
21
-
22
- declare const command: Linter.Config[];
23
-
24
- declare const comments: Linter.Config[];
25
-
26
- declare const ignores: Linter.Config[];
27
-
28
- declare const imports: Linter.Config[];
29
31
 
30
32
  interface Rules {
31
33
  /**
@@ -222,7 +224,7 @@ interface Rules {
222
224
  * Disallow using code marked as `@deprecated`
223
225
  * @see https://typescript-eslint.io/rules/no-deprecated
224
226
  */
225
- '@typescript-eslint/no-deprecated'?: Linter.RuleEntry<[]>;
227
+ '@typescript-eslint/no-deprecated'?: Linter.RuleEntry<TypescriptEslintNoDeprecated>;
226
228
  /**
227
229
  * Disallow duplicate class members
228
230
  * @see https://typescript-eslint.io/rules/no-dupe-class-members
@@ -340,6 +342,11 @@ interface Rules {
340
342
  * @see https://typescript-eslint.io/rules/no-misused-promises
341
343
  */
342
344
  '@typescript-eslint/no-misused-promises'?: Linter.RuleEntry<TypescriptEslintNoMisusedPromises>;
345
+ /**
346
+ * Disallow using the spread operator when it might cause unexpected behavior
347
+ * @see https://typescript-eslint.io/rules/no-misused-spread
348
+ */
349
+ '@typescript-eslint/no-misused-spread'?: Linter.RuleEntry<TypescriptEslintNoMisusedSpread>;
343
350
  /**
344
351
  * Disallow enums from having both number and string members
345
352
  * @see https://typescript-eslint.io/rules/no-mixed-enums
@@ -538,7 +545,7 @@ interface Rules {
538
545
  */
539
546
  '@typescript-eslint/no-wrapper-object-types'?: Linter.RuleEntry<[]>;
540
547
  /**
541
- * Enforce non-null assertions over explicit type casts
548
+ * Enforce non-null assertions over explicit type assertions
542
549
  * @see https://typescript-eslint.io/rules/non-nullable-type-assertion-style
543
550
  */
544
551
  '@typescript-eslint/non-nullable-type-assertion-style'?: Linter.RuleEntry<[]>;
@@ -623,7 +630,7 @@ interface Rules {
623
630
  */
624
631
  '@typescript-eslint/prefer-readonly-parameter-types'?: Linter.RuleEntry<TypescriptEslintPreferReadonlyParameterTypes>;
625
632
  /**
626
- * Enforce using type parameter when calling `Array#reduce` instead of casting
633
+ * Enforce using type parameter when calling `Array#reduce` instead of using a type assertion
627
634
  * @see https://typescript-eslint.io/rules/prefer-reduce-type-parameter
628
635
  */
629
636
  '@typescript-eslint/prefer-reduce-type-parameter'?: Linter.RuleEntry<[]>;
@@ -922,7 +929,7 @@ interface Rules {
922
929
  */
923
930
  'default-case'?: Linter.RuleEntry<DefaultCase>;
924
931
  /**
925
- * Enforce default clauses in switch statements to be last
932
+ * Enforce `default` clauses in `switch` statements to be last
926
933
  * @see https://eslint.org/docs/latest/rules/default-case-last
927
934
  */
928
935
  'default-case-last'?: Linter.RuleEntry<[]>;
@@ -954,7 +961,7 @@ interface Rules {
954
961
  */
955
962
  'eqeqeq'?: Linter.RuleEntry<Eqeqeq>;
956
963
  /**
957
- * Enforce "for" loop update clause moving the counter in the right direction
964
+ * Enforce `for` loop update clause moving the counter in the right direction
958
965
  * @see https://eslint.org/docs/latest/rules/for-direction
959
966
  */
960
967
  'for-direction'?: Linter.RuleEntry<[]>;
@@ -1053,233 +1060,233 @@ interface Rules {
1053
1060
  'implicit-arrow-linebreak'?: Linter.RuleEntry<ImplicitArrowLinebreak>;
1054
1061
  /**
1055
1062
  * Enforce or ban the use of inline type-only markers for named imports.
1056
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.4.3/docs/rules/consistent-type-specifier-style.md
1063
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/consistent-type-specifier-style.md
1057
1064
  */
1058
1065
  'import/consistent-type-specifier-style'?: Linter.RuleEntry<ImportConsistentTypeSpecifierStyle>;
1059
1066
  /**
1060
1067
  * Ensure a default export is present, given a default import.
1061
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.4.3/docs/rules/default.md
1068
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/default.md
1062
1069
  */
1063
1070
  'import/default'?: Linter.RuleEntry<[]>;
1064
1071
  /**
1065
1072
  * Enforce a leading comment with the webpackChunkName for dynamic imports.
1066
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.4.3/docs/rules/dynamic-import-chunkname.md
1073
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/dynamic-import-chunkname.md
1067
1074
  */
1068
1075
  'import/dynamic-import-chunkname'?: Linter.RuleEntry<ImportDynamicImportChunkname>;
1069
1076
  /**
1070
1077
  * Forbid any invalid exports, i.e. re-export of the same name.
1071
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.4.3/docs/rules/export.md
1078
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/export.md
1072
1079
  */
1073
1080
  'import/export'?: Linter.RuleEntry<[]>;
1074
1081
  /**
1075
1082
  * Ensure all exports appear after other statements.
1076
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.4.3/docs/rules/exports-last.md
1083
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/exports-last.md
1077
1084
  */
1078
1085
  'import/exports-last'?: Linter.RuleEntry<[]>;
1079
1086
  /**
1080
1087
  * Ensure consistent use of file extension within the import path.
1081
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.4.3/docs/rules/extensions.md
1088
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/extensions.md
1082
1089
  */
1083
1090
  'import/extensions'?: Linter.RuleEntry<ImportExtensions>;
1084
1091
  /**
1085
1092
  * Ensure all imports appear before other statements.
1086
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.4.3/docs/rules/first.md
1093
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/first.md
1087
1094
  */
1088
1095
  'import/first'?: Linter.RuleEntry<ImportFirst>;
1089
1096
  /**
1090
1097
  * Prefer named exports to be grouped together in a single export declaration.
1091
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.4.3/docs/rules/group-exports.md
1098
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/group-exports.md
1092
1099
  */
1093
1100
  'import/group-exports'?: Linter.RuleEntry<[]>;
1094
1101
  /**
1095
1102
  * Replaced by `import-x/first`.
1096
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.4.3/docs/rules/imports-first.md
1103
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/imports-first.md
1097
1104
  * @deprecated
1098
1105
  */
1099
1106
  'import/imports-first'?: Linter.RuleEntry<ImportImportsFirst>;
1100
1107
  /**
1101
1108
  * Enforce the maximum number of dependencies a module can have.
1102
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.4.3/docs/rules/max-dependencies.md
1109
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/max-dependencies.md
1103
1110
  */
1104
1111
  'import/max-dependencies'?: Linter.RuleEntry<ImportMaxDependencies>;
1105
1112
  /**
1106
1113
  * Ensure named imports correspond to a named export in the remote file.
1107
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.4.3/docs/rules/named.md
1114
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/named.md
1108
1115
  */
1109
1116
  'import/named'?: Linter.RuleEntry<ImportNamed>;
1110
1117
  /**
1111
1118
  * Ensure imported namespaces contain dereferenced properties as they are dereferenced.
1112
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.4.3/docs/rules/namespace.md
1119
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/namespace.md
1113
1120
  */
1114
1121
  'import/namespace'?: Linter.RuleEntry<ImportNamespace>;
1115
1122
  /**
1116
1123
  * Enforce a newline after import statements.
1117
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.4.3/docs/rules/newline-after-import.md
1124
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/newline-after-import.md
1118
1125
  */
1119
1126
  'import/newline-after-import'?: Linter.RuleEntry<ImportNewlineAfterImport>;
1120
1127
  /**
1121
1128
  * Forbid import of modules using absolute paths.
1122
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.4.3/docs/rules/no-absolute-path.md
1129
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/no-absolute-path.md
1123
1130
  */
1124
1131
  'import/no-absolute-path'?: Linter.RuleEntry<ImportNoAbsolutePath>;
1125
1132
  /**
1126
1133
  * Forbid AMD `require` and `define` calls.
1127
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.4.3/docs/rules/no-amd.md
1134
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/no-amd.md
1128
1135
  */
1129
1136
  'import/no-amd'?: Linter.RuleEntry<[]>;
1130
1137
  /**
1131
1138
  * Forbid anonymous values as default exports.
1132
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.4.3/docs/rules/no-anonymous-default-export.md
1139
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/no-anonymous-default-export.md
1133
1140
  */
1134
1141
  'import/no-anonymous-default-export'?: Linter.RuleEntry<ImportNoAnonymousDefaultExport>;
1135
1142
  /**
1136
1143
  * Forbid CommonJS `require` calls and `module.exports` or `exports.*`.
1137
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.4.3/docs/rules/no-commonjs.md
1144
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/no-commonjs.md
1138
1145
  */
1139
1146
  'import/no-commonjs'?: Linter.RuleEntry<ImportNoCommonjs>;
1140
1147
  /**
1141
1148
  * Forbid a module from importing a module with a dependency path back to itself.
1142
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.4.3/docs/rules/no-cycle.md
1149
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/no-cycle.md
1143
1150
  */
1144
1151
  'import/no-cycle'?: Linter.RuleEntry<ImportNoCycle>;
1145
1152
  /**
1146
1153
  * Forbid default exports.
1147
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.4.3/docs/rules/no-default-export.md
1154
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/no-default-export.md
1148
1155
  */
1149
1156
  'import/no-default-export'?: Linter.RuleEntry<[]>;
1150
1157
  /**
1151
1158
  * Forbid imported names marked with `@deprecated` documentation tag.
1152
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.4.3/docs/rules/no-deprecated.md
1159
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/no-deprecated.md
1153
1160
  */
1154
1161
  'import/no-deprecated'?: Linter.RuleEntry<[]>;
1155
1162
  /**
1156
1163
  * Forbid repeated import of the same module in multiple places.
1157
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.4.3/docs/rules/no-duplicates.md
1164
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/no-duplicates.md
1158
1165
  */
1159
1166
  'import/no-duplicates'?: Linter.RuleEntry<ImportNoDuplicates>;
1160
1167
  /**
1161
1168
  * Forbid `require()` calls with expressions.
1162
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.4.3/docs/rules/no-dynamic-require.md
1169
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/no-dynamic-require.md
1163
1170
  */
1164
1171
  'import/no-dynamic-require'?: Linter.RuleEntry<ImportNoDynamicRequire>;
1165
1172
  /**
1166
1173
  * Forbid empty named import blocks.
1167
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.4.3/docs/rules/no-empty-named-blocks.md
1174
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/no-empty-named-blocks.md
1168
1175
  */
1169
1176
  'import/no-empty-named-blocks'?: Linter.RuleEntry<[]>;
1170
1177
  /**
1171
1178
  * Forbid the use of extraneous packages.
1172
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.4.3/docs/rules/no-extraneous-dependencies.md
1179
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/no-extraneous-dependencies.md
1173
1180
  */
1174
1181
  'import/no-extraneous-dependencies'?: Linter.RuleEntry<ImportNoExtraneousDependencies>;
1175
1182
  /**
1176
1183
  * Forbid import statements with CommonJS module.exports.
1177
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.4.3/docs/rules/no-import-module-exports.md
1184
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/no-import-module-exports.md
1178
1185
  */
1179
1186
  'import/no-import-module-exports'?: Linter.RuleEntry<ImportNoImportModuleExports>;
1180
1187
  /**
1181
1188
  * Forbid importing the submodules of other modules.
1182
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.4.3/docs/rules/no-internal-modules.md
1189
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/no-internal-modules.md
1183
1190
  */
1184
1191
  'import/no-internal-modules'?: Linter.RuleEntry<ImportNoInternalModules>;
1185
1192
  /**
1186
1193
  * Forbid the use of mutable exports with `var` or `let`.
1187
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.4.3/docs/rules/no-mutable-exports.md
1194
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/no-mutable-exports.md
1188
1195
  */
1189
1196
  'import/no-mutable-exports'?: Linter.RuleEntry<[]>;
1190
1197
  /**
1191
1198
  * Forbid use of exported name as identifier of default export.
1192
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.4.3/docs/rules/no-named-as-default.md
1199
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/no-named-as-default.md
1193
1200
  */
1194
1201
  'import/no-named-as-default'?: Linter.RuleEntry<[]>;
1195
1202
  /**
1196
1203
  * Forbid use of exported name as property of default export.
1197
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.4.3/docs/rules/no-named-as-default-member.md
1204
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/no-named-as-default-member.md
1198
1205
  */
1199
1206
  'import/no-named-as-default-member'?: Linter.RuleEntry<[]>;
1200
1207
  /**
1201
1208
  * Forbid named default exports.
1202
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.4.3/docs/rules/no-named-default.md
1209
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/no-named-default.md
1203
1210
  */
1204
1211
  'import/no-named-default'?: Linter.RuleEntry<[]>;
1205
1212
  /**
1206
1213
  * Forbid named exports.
1207
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.4.3/docs/rules/no-named-export.md
1214
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/no-named-export.md
1208
1215
  */
1209
1216
  'import/no-named-export'?: Linter.RuleEntry<[]>;
1210
1217
  /**
1211
1218
  * Forbid namespace (a.k.a. "wildcard" `*`) imports.
1212
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.4.3/docs/rules/no-namespace.md
1219
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/no-namespace.md
1213
1220
  */
1214
1221
  'import/no-namespace'?: Linter.RuleEntry<ImportNoNamespace>;
1215
1222
  /**
1216
1223
  * Forbid Node.js builtin modules.
1217
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.4.3/docs/rules/no-nodejs-modules.md
1224
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/no-nodejs-modules.md
1218
1225
  */
1219
1226
  'import/no-nodejs-modules'?: Linter.RuleEntry<ImportNoNodejsModules>;
1220
1227
  /**
1221
1228
  * Forbid importing packages through relative paths.
1222
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.4.3/docs/rules/no-relative-packages.md
1229
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/no-relative-packages.md
1223
1230
  */
1224
1231
  'import/no-relative-packages'?: Linter.RuleEntry<ImportNoRelativePackages>;
1225
1232
  /**
1226
1233
  * Forbid importing modules from parent directories.
1227
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.4.3/docs/rules/no-relative-parent-imports.md
1234
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/no-relative-parent-imports.md
1228
1235
  */
1229
1236
  'import/no-relative-parent-imports'?: Linter.RuleEntry<ImportNoRelativeParentImports>;
1230
1237
  /**
1231
1238
  * Forbid importing a default export by a different name.
1232
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.4.3/docs/rules/no-rename-default.md
1239
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/no-rename-default.md
1233
1240
  */
1234
1241
  'import/no-rename-default'?: Linter.RuleEntry<ImportNoRenameDefault>;
1235
1242
  /**
1236
1243
  * Enforce which files can be imported in a given folder.
1237
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.4.3/docs/rules/no-restricted-paths.md
1244
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/no-restricted-paths.md
1238
1245
  */
1239
1246
  'import/no-restricted-paths'?: Linter.RuleEntry<ImportNoRestrictedPaths>;
1240
1247
  /**
1241
1248
  * Forbid a module from importing itself.
1242
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.4.3/docs/rules/no-self-import.md
1249
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/no-self-import.md
1243
1250
  */
1244
1251
  'import/no-self-import'?: Linter.RuleEntry<[]>;
1245
1252
  /**
1246
1253
  * Forbid unassigned imports.
1247
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.4.3/docs/rules/no-unassigned-import.md
1254
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/no-unassigned-import.md
1248
1255
  */
1249
1256
  'import/no-unassigned-import'?: Linter.RuleEntry<ImportNoUnassignedImport>;
1250
1257
  /**
1251
1258
  * Ensure imports point to a file/module that can be resolved.
1252
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.4.3/docs/rules/no-unresolved.md
1259
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/no-unresolved.md
1253
1260
  */
1254
1261
  'import/no-unresolved'?: Linter.RuleEntry<ImportNoUnresolved>;
1255
1262
  /**
1256
1263
  * Forbid modules without exports, or exports without matching import in another module.
1257
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.4.3/docs/rules/no-unused-modules.md
1264
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/no-unused-modules.md
1258
1265
  */
1259
1266
  'import/no-unused-modules'?: Linter.RuleEntry<ImportNoUnusedModules>;
1260
1267
  /**
1261
1268
  * Forbid unnecessary path segments in import and require statements.
1262
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.4.3/docs/rules/no-useless-path-segments.md
1269
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/no-useless-path-segments.md
1263
1270
  */
1264
1271
  'import/no-useless-path-segments'?: Linter.RuleEntry<ImportNoUselessPathSegments>;
1265
1272
  /**
1266
1273
  * Forbid webpack loader syntax in imports.
1267
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.4.3/docs/rules/no-webpack-loader-syntax.md
1274
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/no-webpack-loader-syntax.md
1268
1275
  */
1269
1276
  'import/no-webpack-loader-syntax'?: Linter.RuleEntry<[]>;
1270
1277
  /**
1271
1278
  * Enforce a convention in module import order.
1272
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.4.3/docs/rules/order.md
1279
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/order.md
1273
1280
  */
1274
1281
  'import/order'?: Linter.RuleEntry<ImportOrder>;
1275
1282
  /**
1276
1283
  * Prefer a default export if module exports a single name or multiple names.
1277
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.4.3/docs/rules/prefer-default-export.md
1284
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/prefer-default-export.md
1278
1285
  */
1279
1286
  'import/prefer-default-export'?: Linter.RuleEntry<ImportPreferDefaultExport>;
1280
1287
  /**
1281
1288
  * Forbid potentially ambiguous parse goal (`script` vs. `module`).
1282
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.4.3/docs/rules/unambiguous.md
1289
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.6.1/docs/rules/unambiguous.md
1283
1290
  */
1284
1291
  'import/unambiguous'?: Linter.RuleEntry<[]>;
1285
1292
  /**
@@ -1858,31 +1865,31 @@ interface Rules {
1858
1865
  */
1859
1866
  'logical-assignment-operators'?: Linter.RuleEntry<LogicalAssignmentOperators>;
1860
1867
  /**
1861
- * Require languages for fenced code blocks.
1868
+ * Require languages for fenced code blocks
1862
1869
  */
1863
1870
  'markdown/fenced-code-language'?: Linter.RuleEntry<MarkdownFencedCodeLanguage>;
1864
1871
  /**
1865
- * Enforce heading levels increment by one.
1872
+ * Enforce heading levels increment by one
1866
1873
  */
1867
1874
  'markdown/heading-increment'?: Linter.RuleEntry<[]>;
1868
1875
  /**
1869
- * Disallow duplicate headings in the same document.
1876
+ * Disallow duplicate headings in the same document
1870
1877
  */
1871
1878
  'markdown/no-duplicate-headings'?: Linter.RuleEntry<[]>;
1872
1879
  /**
1873
- * Disallow empty links.
1880
+ * Disallow empty links
1874
1881
  */
1875
1882
  'markdown/no-empty-links'?: Linter.RuleEntry<[]>;
1876
1883
  /**
1877
- * Disallow HTML tags.
1884
+ * Disallow HTML tags
1878
1885
  */
1879
1886
  'markdown/no-html'?: Linter.RuleEntry<MarkdownNoHtml>;
1880
1887
  /**
1881
- * Disallow invalid label references.
1888
+ * Disallow invalid label references
1882
1889
  */
1883
1890
  'markdown/no-invalid-label-refs'?: Linter.RuleEntry<[]>;
1884
1891
  /**
1885
- * Disallow missing label references.
1892
+ * Disallow missing label references
1886
1893
  */
1887
1894
  'markdown/no-missing-label-refs'?: Linter.RuleEntry<[]>;
1888
1895
  /**
@@ -2026,7 +2033,7 @@ interface Rules {
2026
2033
  */
2027
2034
  'no-class-assign'?: Linter.RuleEntry<[]>;
2028
2035
  /**
2029
- * Disallow comparing against -0
2036
+ * Disallow comparing against `-0`
2030
2037
  * @see https://eslint.org/docs/latest/rules/no-compare-neg-zero
2031
2038
  */
2032
2039
  'no-compare-neg-zero'?: Linter.RuleEntry<[]>;
@@ -2435,7 +2442,7 @@ interface Rules {
2435
2442
  */
2436
2443
  'no-octal-escape'?: Linter.RuleEntry<[]>;
2437
2444
  /**
2438
- * Disallow reassigning `function` parameters
2445
+ * Disallow reassigning function parameters
2439
2446
  * @see https://eslint.org/docs/latest/rules/no-param-reassign
2440
2447
  */
2441
2448
  'no-param-reassign'?: Linter.RuleEntry<NoParamReassign>;
@@ -2530,7 +2537,7 @@ interface Rules {
2530
2537
  */
2531
2538
  'no-return-await'?: Linter.RuleEntry<[]>;
2532
2539
  /**
2533
- * Disallow `javascript:` urls
2540
+ * Disallow `javascript:` URLs
2534
2541
  * @see https://eslint.org/docs/latest/rules/no-script-url
2535
2542
  */
2536
2543
  'no-script-url'?: Linter.RuleEntry<[]>;
@@ -3175,7 +3182,7 @@ interface Rules {
3175
3182
  */
3176
3183
  'prefer-object-has-own'?: Linter.RuleEntry<[]>;
3177
3184
  /**
3178
- * Disallow using Object.assign with an object literal as the first argument and prefer the use of object spread instead
3185
+ * Disallow using `Object.assign` with an object literal as the first argument and prefer the use of object spread instead
3179
3186
  * @see https://eslint.org/docs/latest/rules/prefer-object-spread
3180
3187
  */
3181
3188
  'prefer-object-spread'?: Linter.RuleEntry<[]>;
@@ -3652,7 +3659,7 @@ interface Rules {
3652
3659
  */
3653
3660
  'require-await'?: Linter.RuleEntry<[]>;
3654
3661
  /**
3655
- * Enforce the use of `u` or `v` flag on RegExp
3662
+ * Enforce the use of `u` or `v` flag on regular expressions
3656
3663
  * @see https://eslint.org/docs/latest/rules/require-unicode-regexp
3657
3664
  */
3658
3665
  'require-unicode-regexp'?: Linter.RuleEntry<RequireUnicodeRegexp>;
@@ -3686,7 +3693,7 @@ interface Rules {
3686
3693
  */
3687
3694
  'semi-style'?: Linter.RuleEntry<SemiStyle>;
3688
3695
  /**
3689
- * Enforce sorted import declarations within modules
3696
+ * Enforce sorted `import` declarations within modules
3690
3697
  * @see https://eslint.org/docs/latest/rules/sort-imports
3691
3698
  */
3692
3699
  'sort-imports'?: Linter.RuleEntry<SortImports>;
@@ -4969,7 +4976,7 @@ interface Rules {
4969
4976
  * enforce `inheritAttrs` to be set to `false` when using `v-bind="$attrs"`
4970
4977
  * @see https://eslint.vuejs.org/rules/no-duplicate-attr-inheritance.html
4971
4978
  */
4972
- 'vue/no-duplicate-attr-inheritance'?: Linter.RuleEntry<[]>;
4979
+ 'vue/no-duplicate-attr-inheritance'?: Linter.RuleEntry<VueNoDuplicateAttrInheritance>;
4973
4980
  /**
4974
4981
  * disallow duplication of attributes
4975
4982
  * @see https://eslint.vuejs.org/rules/no-duplicate-attributes.html
@@ -5414,7 +5421,7 @@ interface Rules {
5414
5421
  */
5415
5422
  'vue/prefer-true-attribute-shorthand'?: Linter.RuleEntry<VuePreferTrueAttributeShorthand>;
5416
5423
  /**
5417
- * require using `useTemplateRef` instead of `ref` for template refs
5424
+ * require using `useTemplateRef` instead of `ref`/`shallowRef` for template refs
5418
5425
  * @see https://eslint.vuejs.org/rules/prefer-use-template-ref.html
5419
5426
  */
5420
5427
  'vue/prefer-use-template-ref'?: Linter.RuleEntry<[]>;
@@ -5528,6 +5535,11 @@ interface Rules {
5528
5535
  * @see https://eslint.vuejs.org/rules/require-valid-default-prop.html
5529
5536
  */
5530
5537
  'vue/require-valid-default-prop'?: Linter.RuleEntry<[]>;
5538
+ /**
5539
+ * enforce using only specific component names
5540
+ * @see https://eslint.vuejs.org/rules/restricted-component-names.html
5541
+ */
5542
+ 'vue/restricted-component-names'?: Linter.RuleEntry<VueRestrictedComponentNames>;
5531
5543
  /**
5532
5544
  * enforce that a return statement is present in computed property
5533
5545
  * @see https://eslint.vuejs.org/rules/return-in-computed-property.html
@@ -5554,6 +5566,11 @@ interface Rules {
5554
5566
  * @see https://eslint.vuejs.org/rules/singleline-html-element-content-newline.html
5555
5567
  */
5556
5568
  'vue/singleline-html-element-content-newline'?: Linter.RuleEntry<VueSinglelineHtmlElementContentNewline>;
5569
+ /**
5570
+ * enforce specific casing for slot names
5571
+ * @see https://eslint.vuejs.org/rules/slot-name-casing.html
5572
+ */
5573
+ 'vue/slot-name-casing'?: Linter.RuleEntry<VueSlotNameCasing>;
5557
5574
  /**
5558
5575
  * enforce sort-keys in a manner that is compatible with order-in-components
5559
5576
  * @see https://eslint.vuejs.org/rules/sort-keys.html
@@ -5978,7 +5995,8 @@ type TypescriptEslintConsistentTypeAssertions = [] | [
5978
5995
  ({
5979
5996
  assertionStyle: "never";
5980
5997
  } | {
5981
- assertionStyle: ("as" | "angle-bracket");
5998
+ arrayLiteralTypeAssertions?: ("allow" | "allow-as-parameter" | "never");
5999
+ assertionStyle?: ("as" | "angle-bracket");
5982
6000
  objectLiteralTypeAssertions?: ("allow" | "allow-as-parameter" | "never");
5983
6001
  })
5984
6002
  ];
@@ -6411,6 +6429,22 @@ type TypescriptEslintNoConfusingVoidExpression = [] | [
6411
6429
  ignoreVoidReturningFunctions?: boolean;
6412
6430
  }
6413
6431
  ];
6432
+ type TypescriptEslintNoDeprecated = [] | [
6433
+ {
6434
+ allow?: (string | {
6435
+ from: "file";
6436
+ name: (string | [string, ...(string)[]]);
6437
+ path?: string;
6438
+ } | {
6439
+ from: "lib";
6440
+ name: (string | [string, ...(string)[]]);
6441
+ } | {
6442
+ from: "package";
6443
+ name: (string | [string, ...(string)[]]);
6444
+ package: string;
6445
+ })[];
6446
+ }
6447
+ ];
6414
6448
  type TypescriptEslintNoDuplicateTypeConstituents = [] | [
6415
6449
  {
6416
6450
  ignoreIntersections?: boolean;
@@ -6529,6 +6563,22 @@ type TypescriptEslintNoMisusedPromises = [] | [
6529
6563
  });
6530
6564
  }
6531
6565
  ];
6566
+ type TypescriptEslintNoMisusedSpread = [] | [
6567
+ {
6568
+ allow?: (string | {
6569
+ from: "file";
6570
+ name: (string | [string, ...(string)[]]);
6571
+ path?: string;
6572
+ } | {
6573
+ from: "lib";
6574
+ name: (string | [string, ...(string)[]]);
6575
+ } | {
6576
+ from: "package";
6577
+ name: (string | [string, ...(string)[]]);
6578
+ package: string;
6579
+ })[];
6580
+ }
6581
+ ];
6532
6582
  type TypescriptEslintNoNamespace = [] | [
6533
6583
  {
6534
6584
  allowDeclarations?: boolean;
@@ -6590,7 +6640,7 @@ type TypescriptEslintNoShadow = [] | [
6590
6640
  {
6591
6641
  allow?: string[];
6592
6642
  builtinGlobals?: boolean;
6593
- hoist?: ("all" | "functions" | "never");
6643
+ hoist?: ("all" | "functions" | "functions-and-types" | "never" | "types");
6594
6644
  ignoreFunctionTypeParameterNameValueShadow?: boolean;
6595
6645
  ignoreOnInitialization?: boolean;
6596
6646
  ignoreTypeValueShadow?: boolean;
@@ -6764,6 +6814,8 @@ type TypescriptEslintPreferOptionalChain = [] | [
6764
6814
  type TypescriptEslintPreferPromiseRejectErrors = [] | [
6765
6815
  {
6766
6816
  allowEmptyReject?: boolean;
6817
+ allowThrowingAny?: boolean;
6818
+ allowThrowingUnknown?: boolean;
6767
6819
  }
6768
6820
  ];
6769
6821
  type TypescriptEslintPreferReadonly = [] | [
@@ -6869,6 +6921,7 @@ type TypescriptEslintSwitchExhaustivenessCheck = [] | [
6869
6921
  {
6870
6922
  allowDefaultCaseForExhaustiveSwitch?: boolean;
6871
6923
  considerDefaultExhaustiveForUnions?: boolean;
6924
+ defaultCaseCommentPattern?: string;
6872
6925
  requireDefaultForNonUnion?: boolean;
6873
6926
  }
6874
6927
  ];
@@ -7634,6 +7687,7 @@ type JsdocInformativeDocs = [] | [
7634
7687
  ];
7635
7688
  type JsdocLinesBeforeBlock = [] | [
7636
7689
  {
7690
+ checkBlockStarts?: boolean;
7637
7691
  excludedTags?: string[];
7638
7692
  ignoreSameLine?: boolean;
7639
7693
  lines?: number;
@@ -9345,6 +9399,9 @@ type NodeNoExtraneousImport = [] | [
9345
9399
  })[]
9346
9400
  ]);
9347
9401
  resolvePaths?: string[];
9402
+ resolverConfig?: {
9403
+ [k: string]: unknown | undefined;
9404
+ };
9348
9405
  }
9349
9406
  ];
9350
9407
  type NodeNoExtraneousRequire = [] | [
@@ -9365,6 +9422,9 @@ type NodeNoExtraneousRequire = [] | [
9365
9422
  })[]
9366
9423
  ]);
9367
9424
  resolvePaths?: string[];
9425
+ resolverConfig?: {
9426
+ [k: string]: unknown | undefined;
9427
+ };
9368
9428
  tryExtensions?: string[];
9369
9429
  }
9370
9430
  ];
@@ -9379,6 +9439,9 @@ type NodeNoMissingImport = [] | [
9379
9439
  {
9380
9440
  allowModules?: string[];
9381
9441
  resolvePaths?: string[];
9442
+ resolverConfig?: {
9443
+ [k: string]: unknown | undefined;
9444
+ };
9382
9445
  tryExtensions?: string[];
9383
9446
  ignoreTypeImport?: boolean;
9384
9447
  tsconfigPath?: string;
@@ -9390,6 +9453,9 @@ type NodeNoMissingRequire = [] | [
9390
9453
  allowModules?: string[];
9391
9454
  tryExtensions?: string[];
9392
9455
  resolvePaths?: string[];
9456
+ resolverConfig?: {
9457
+ [k: string]: unknown | undefined;
9458
+ };
9393
9459
  typescriptExtensionMap?: (unknown[][] | ("react" | "react-jsx" | "react-jsxdev" | "react-native" | "preserve"));
9394
9460
  tsconfigPath?: string;
9395
9461
  }
@@ -9460,6 +9526,9 @@ type NodeNoUnpublishedImport = [] | [
9460
9526
  })[]
9461
9527
  ]);
9462
9528
  resolvePaths?: string[];
9529
+ resolverConfig?: {
9530
+ [k: string]: unknown | undefined;
9531
+ };
9463
9532
  ignoreTypeImport?: boolean;
9464
9533
  ignorePrivate?: boolean;
9465
9534
  }
@@ -9482,6 +9551,9 @@ type NodeNoUnpublishedRequire = [] | [
9482
9551
  })[]
9483
9552
  ]);
9484
9553
  resolvePaths?: string[];
9554
+ resolverConfig?: {
9555
+ [k: string]: unknown | undefined;
9556
+ };
9485
9557
  tryExtensions?: string[];
9486
9558
  ignorePrivate?: boolean;
9487
9559
  }
@@ -9502,7 +9574,7 @@ type NodeNoUnsupportedFeaturesNodeBuiltins = [] | [
9502
9574
  {
9503
9575
  version?: string;
9504
9576
  allowExperimental?: boolean;
9505
- ignores?: ("__filename" | "__dirname" | "require" | "require.cache" | "require.extensions" | "require.main" | "require.resolve" | "require.resolve.paths" | "module" | "module.children" | "module.exports" | "module.filename" | "module.id" | "module.isPreloading" | "module.loaded" | "module.parent" | "module.path" | "module.paths" | "module.require" | "exports" | "AbortController" | "AbortSignal" | "AbortSignal.abort" | "AbortSignal.timeout" | "AbortSignal.any" | "DOMException" | "FormData" | "Headers" | "MessageEvent" | "Navigator" | "Request" | "Response" | "WebAssembly" | "WebSocket" | "fetch" | "global" | "queueMicrotask" | "navigator" | "navigator.hardwareConcurrency" | "navigator.language" | "navigator.languages" | "navigator.platform" | "navigator.userAgent" | "structuredClone" | "localStorage" | "sessionStorage" | "Storage" | "Blob" | "new Buffer()" | "Buffer" | "Buffer.alloc" | "Buffer.allocUnsafe" | "Buffer.allocUnsafeSlow" | "Buffer.byteLength" | "Buffer.compare" | "Buffer.concat" | "Buffer.copyBytesFrom" | "Buffer.from" | "Buffer.isBuffer" | "Buffer.isEncoding" | "File" | "atob" | "btoa" | "console" | "console.profile" | "console.profileEnd" | "console.timeStamp" | "console.Console" | "console.assert" | "console.clear" | "console.count" | "console.countReset" | "console.debug" | "console.dir" | "console.dirxml" | "console.error" | "console.group" | "console.groupCollapsed" | "console.groupEnd" | "console.info" | "console.log" | "console.table" | "console.time" | "console.timeEnd" | "console.timeLog" | "console.trace" | "console.warn" | "crypto" | "crypto.subtle" | "crypto.subtle.decrypt" | "crypto.subtle.deriveBits" | "crypto.subtle.deriveKey" | "crypto.subtle.digest" | "crypto.subtle.encrypt" | "crypto.subtle.exportKey" | "crypto.subtle.generateKey" | "crypto.subtle.importKey" | "crypto.subtle.sign" | "crypto.subtle.unwrapKey" | "crypto.subtle.verify" | "crypto.subtle.wrapKey" | "crypto.getRandomValues" | "crypto.randomUUID" | "Crypto" | "CryptoKey" | "SubtleCrypto" | "CloseEvent" | "CustomEvent" | "Event" | "EventSource" | "EventTarget" | "PerformanceEntry" | "PerformanceMark" | "PerformanceMeasure" | "PerformanceObserver" | "PerformanceObserverEntryList" | "PerformanceResourceTiming" | "performance" | "performance.clearMarks" | "performance.clearMeasures" | "performance.clearResourceTimings" | "performance.eventLoopUtilization" | "performance.getEntries" | "performance.getEntriesByName" | "performance.getEntriesByType" | "performance.mark" | "performance.markResourceTiming" | "performance.measure" | "performance.nodeTiming" | "performance.nodeTiming.bootstrapComplete" | "performance.nodeTiming.environment" | "performance.nodeTiming.idleTime" | "performance.nodeTiming.loopExit" | "performance.nodeTiming.loopStart" | "performance.nodeTiming.nodeStart" | "performance.nodeTiming.uvMetricsInfo" | "performance.nodeTiming.v8Start" | "performance.now" | "performance.onresourcetimingbufferfull" | "performance.setResourceTimingBufferSize" | "performance.timeOrigin" | "performance.timerify" | "performance.toJSON" | "process" | "process.allowedNodeEnvironmentFlags" | "process.availableMemory" | "process.arch" | "process.argv" | "process.argv0" | "process.channel" | "process.config" | "process.connected" | "process.debugPort" | "process.env" | "process.execArgv" | "process.execPath" | "process.exitCode" | "process.features.cached_builtins" | "process.features.debug" | "process.features.inspector" | "process.features.ipv6" | "process.features.require_module" | "process.features.tls" | "process.features.tls_alpn" | "process.features.tls_ocsp" | "process.features.tls_sni" | "process.features.typescript" | "process.features.uv" | "process.finalization.register" | "process.finalization.registerBeforeExit" | "process.finalization.unregister" | "process.getBuiltinModule" | "process.mainModule" | "process.noDeprecation" | "process.permission" | "process.pid" | "process.platform" | "process.ppid" | "process.release" | "process.report" | "process.report.excludeEnv" | "process.sourceMapsEnabled" | "process.stdin" | "process.stdin.isRaw" | "process.stdin.isTTY" | "process.stdin.setRawMode" | "process.stdout" | "process.stdout.clearLine" | "process.stdout.clearScreenDown" | "process.stdout.columns" | "process.stdout.cursorTo" | "process.stdout.getColorDepth" | "process.stdout.getWindowSize" | "process.stdout.hasColors" | "process.stdout.isTTY" | "process.stdout.moveCursor" | "process.stdout.rows" | "process.stderr" | "process.stderr.clearLine" | "process.stderr.clearScreenDown" | "process.stderr.columns" | "process.stderr.cursorTo" | "process.stderr.getColorDepth" | "process.stderr.getWindowSize" | "process.stderr.hasColors" | "process.stderr.isTTY" | "process.stderr.moveCursor" | "process.stderr.rows" | "process.throwDeprecation" | "process.title" | "process.traceDeprecation" | "process.version" | "process.versions" | "process.abort" | "process.chdir" | "process.constrainedMemory" | "process.cpuUsage" | "process.cwd" | "process.disconnect" | "process.dlopen" | "process.emitWarning" | "process.exit" | "process.getActiveResourcesInfo" | "process.getegid" | "process.geteuid" | "process.getgid" | "process.getgroups" | "process.getuid" | "process.hasUncaughtExceptionCaptureCallback" | "process.hrtime" | "process.hrtime.bigint" | "process.initgroups" | "process.kill" | "process.loadEnvFile" | "process.memoryUsage" | "process.rss" | "process.nextTick" | "process.resourceUsage" | "process.send" | "process.setegid" | "process.seteuid" | "process.setgid" | "process.setgroups" | "process.setuid" | "process.setSourceMapsEnabled" | "process.setUncaughtExceptionCaptureCallback" | "process.umask" | "process.uptime" | "ReadableStream" | "ReadableStream.from" | "ReadableStreamDefaultReader" | "ReadableStreamBYOBReader" | "ReadableStreamDefaultController" | "ReadableByteStreamController" | "ReadableStreamBYOBRequest" | "WritableStream" | "WritableStreamDefaultWriter" | "WritableStreamDefaultController" | "TransformStream" | "TransformStreamDefaultController" | "ByteLengthQueuingStrategy" | "CountQueuingStrategy" | "TextEncoderStream" | "TextDecoderStream" | "CompressionStream" | "DecompressionStream" | "setInterval" | "clearInterval" | "setTimeout" | "clearTimeout" | "setImmediate" | "clearImmediate" | "URL" | "URL.canParse" | "URL.createObjectURL" | "URL.revokeObjectURL" | "URLSearchParams" | "TextDecoder" | "TextEncoder" | "BroadcastChannel" | "MessageChannel" | "MessagePort" | "assert" | "assert.assert" | "assert.deepEqual" | "assert.deepStrictEqual" | "assert.doesNotMatch" | "assert.doesNotReject" | "assert.doesNotThrow" | "assert.equal" | "assert.fail" | "assert.ifError" | "assert.match" | "assert.notDeepEqual" | "assert.notDeepStrictEqual" | "assert.notEqual" | "assert.notStrictEqual" | "assert.ok" | "assert.rejects" | "assert.strictEqual" | "assert.throws" | "assert.CallTracker" | "assert.strict" | "assert.strict.assert" | "assert.strict.deepEqual" | "assert.strict.deepStrictEqual" | "assert.strict.doesNotMatch" | "assert.strict.doesNotReject" | "assert.strict.doesNotThrow" | "assert.strict.equal" | "assert.strict.fail" | "assert.strict.ifError" | "assert.strict.match" | "assert.strict.notDeepEqual" | "assert.strict.notDeepStrictEqual" | "assert.strict.notEqual" | "assert.strict.notStrictEqual" | "assert.strict.ok" | "assert.strict.rejects" | "assert.strict.strictEqual" | "assert.strict.throws" | "assert.strict.CallTracker" | "assert/strict" | "assert/strict.assert" | "assert/strict.deepEqual" | "assert/strict.deepStrictEqual" | "assert/strict.doesNotMatch" | "assert/strict.doesNotReject" | "assert/strict.doesNotThrow" | "assert/strict.equal" | "assert/strict.fail" | "assert/strict.ifError" | "assert/strict.match" | "assert/strict.notDeepEqual" | "assert/strict.notDeepStrictEqual" | "assert/strict.notEqual" | "assert/strict.notStrictEqual" | "assert/strict.ok" | "assert/strict.rejects" | "assert/strict.strictEqual" | "assert/strict.throws" | "assert/strict.CallTracker" | "async_hooks" | "async_hooks.createHook" | "async_hooks.executionAsyncResource" | "async_hooks.executionAsyncId" | "async_hooks.triggerAsyncId" | "async_hooks.AsyncLocalStorage" | "async_hooks.AsyncLocalStorage.bind" | "async_hooks.AsyncLocalStorage.snapshot" | "async_hooks.AsyncResource" | "async_hooks.AsyncResource.bind" | "buffer" | "buffer.constants" | "buffer.INSPECT_MAX_BYTES" | "buffer.kMaxLength" | "buffer.kStringMaxLength" | "buffer.atob" | "buffer.btoa" | "buffer.isAscii" | "buffer.isUtf8" | "buffer.resolveObjectURL" | "buffer.transcode" | "buffer.SlowBuffer" | "buffer.Blob" | "new buffer.Buffer()" | "buffer.Buffer" | "buffer.Buffer.alloc" | "buffer.Buffer.allocUnsafe" | "buffer.Buffer.allocUnsafeSlow" | "buffer.Buffer.byteLength" | "buffer.Buffer.compare" | "buffer.Buffer.concat" | "buffer.Buffer.copyBytesFrom" | "buffer.Buffer.from" | "buffer.Buffer.isBuffer" | "buffer.Buffer.isEncoding" | "buffer.File" | "child_process" | "child_process.exec" | "child_process.execFile" | "child_process.fork" | "child_process.spawn" | "child_process.execFileSync" | "child_process.execSync" | "child_process.spawnSync" | "child_process.ChildProcess" | "cluster" | "cluster.isMaster" | "cluster.isPrimary" | "cluster.isWorker" | "cluster.schedulingPolicy" | "cluster.settings" | "cluster.worker" | "cluster.workers" | "cluster.disconnect" | "cluster.fork" | "cluster.setupMaster" | "cluster.setupPrimary" | "cluster.Worker" | "crypto.constants" | "crypto.fips" | "crypto.webcrypto" | "crypto.webcrypto.subtle" | "crypto.webcrypto.subtle.decrypt" | "crypto.webcrypto.subtle.deriveBits" | "crypto.webcrypto.subtle.deriveKey" | "crypto.webcrypto.subtle.digest" | "crypto.webcrypto.subtle.encrypt" | "crypto.webcrypto.subtle.exportKey" | "crypto.webcrypto.subtle.generateKey" | "crypto.webcrypto.subtle.importKey" | "crypto.webcrypto.subtle.sign" | "crypto.webcrypto.subtle.unwrapKey" | "crypto.webcrypto.subtle.verify" | "crypto.webcrypto.subtle.wrapKey" | "crypto.webcrypto.getRandomValues" | "crypto.webcrypto.randomUUID" | "crypto.checkPrime" | "crypto.checkPrimeSync" | "crypto.createCipher" | "crypto.createCipheriv" | "crypto.createDecipher" | "crypto.createDecipheriv" | "crypto.createDiffieHellman" | "crypto.createDiffieHellmanGroup" | "crypto.createECDH" | "crypto.createHash" | "crypto.createHmac" | "crypto.createPrivateKey" | "crypto.createPublicKey" | "crypto.createSecretKey" | "crypto.createSign" | "crypto.createVerify" | "crypto.diffieHellman" | "crypto.generateKey" | "crypto.generateKeyPair" | "crypto.generateKeyPairSync" | "crypto.generateKeySync" | "crypto.generatePrime" | "crypto.generatePrimeSync" | "crypto.getCipherInfo" | "crypto.getCiphers" | "crypto.getCurves" | "crypto.getDiffieHellman" | "crypto.getFips" | "crypto.getHashes" | "crypto.hash" | "crypto.hkdf" | "crypto.hkdfSync" | "crypto.pbkdf2" | "crypto.pbkdf2Sync" | "crypto.privateDecrypt" | "crypto.privateEncrypt" | "crypto.publicDecrypt" | "crypto.publicEncrypt" | "crypto.randomBytes" | "crypto.randomFillSync" | "crypto.randomFill" | "crypto.randomInt" | "crypto.scrypt" | "crypto.scryptSync" | "crypto.secureHeapUsed" | "crypto.setEngine" | "crypto.setFips" | "crypto.sign" | "crypto.timingSafeEqual" | "crypto.verify" | "crypto.Certificate" | "crypto.Certificate.exportChallenge" | "crypto.Certificate.exportPublicKey" | "crypto.Certificate.verifySpkac" | "crypto.Cipher" | "crypto.Decipher" | "crypto.DiffieHellman" | "crypto.DiffieHellmanGroup" | "crypto.ECDH" | "crypto.ECDH.convertKey" | "crypto.Hash()" | "new crypto.Hash()" | "crypto.Hash" | "crypto.Hmac()" | "new crypto.Hmac()" | "crypto.Hmac" | "crypto.KeyObject" | "crypto.KeyObject.from" | "crypto.Sign" | "crypto.Verify" | "crypto.X509Certificate" | "dgram" | "dgram.createSocket" | "dgram.Socket" | "diagnostics_channel" | "diagnostics_channel.hasSubscribers" | "diagnostics_channel.channel" | "diagnostics_channel.subscribe" | "diagnostics_channel.unsubscribe" | "diagnostics_channel.tracingChannel" | "diagnostics_channel.Channel" | "diagnostics_channel.TracingChannel" | "dns" | "dns.Resolver" | "dns.getServers" | "dns.lookup" | "dns.lookupService" | "dns.resolve" | "dns.resolve4" | "dns.resolve6" | "dns.resolveAny" | "dns.resolveCname" | "dns.resolveCaa" | "dns.resolveMx" | "dns.resolveNaptr" | "dns.resolveNs" | "dns.resolvePtr" | "dns.resolveSoa" | "dns.resolveSrv" | "dns.resolveTxt" | "dns.reverse" | "dns.setDefaultResultOrder" | "dns.getDefaultResultOrder" | "dns.setServers" | "dns.promises" | "dns.promises.Resolver" | "dns.promises.cancel" | "dns.promises.getServers" | "dns.promises.lookup" | "dns.promises.lookupService" | "dns.promises.resolve" | "dns.promises.resolve4" | "dns.promises.resolve6" | "dns.promises.resolveAny" | "dns.promises.resolveCaa" | "dns.promises.resolveCname" | "dns.promises.resolveMx" | "dns.promises.resolveNaptr" | "dns.promises.resolveNs" | "dns.promises.resolvePtr" | "dns.promises.resolveSoa" | "dns.promises.resolveSrv" | "dns.promises.resolveTxt" | "dns.promises.reverse" | "dns.promises.setDefaultResultOrder" | "dns.promises.getDefaultResultOrder" | "dns.promises.setServers" | "dns/promises" | "dns/promises.Resolver" | "dns/promises.cancel" | "dns/promises.getServers" | "dns/promises.lookup" | "dns/promises.lookupService" | "dns/promises.resolve" | "dns/promises.resolve4" | "dns/promises.resolve6" | "dns/promises.resolveAny" | "dns/promises.resolveCaa" | "dns/promises.resolveCname" | "dns/promises.resolveMx" | "dns/promises.resolveNaptr" | "dns/promises.resolveNs" | "dns/promises.resolvePtr" | "dns/promises.resolveSoa" | "dns/promises.resolveSrv" | "dns/promises.resolveTxt" | "dns/promises.reverse" | "dns/promises.setDefaultResultOrder" | "dns/promises.getDefaultResultOrder" | "dns/promises.setServers" | "domain" | "domain.create" | "domain.Domain" | "events" | "events.Event" | "events.EventTarget" | "events.CustomEvent" | "events.NodeEventTarget" | "events.EventEmitter" | "events.EventEmitter.defaultMaxListeners" | "events.EventEmitter.errorMonitor" | "events.EventEmitter.captureRejections" | "events.EventEmitter.captureRejectionSymbol" | "events.EventEmitter.getEventListeners" | "events.EventEmitter.getMaxListeners" | "events.EventEmitter.once" | "events.EventEmitter.listenerCount" | "events.EventEmitter.on" | "events.EventEmitter.setMaxListeners" | "events.EventEmitter.addAbortListener" | "events.EventEmitterAsyncResource" | "events.EventEmitterAsyncResource.defaultMaxListeners" | "events.EventEmitterAsyncResource.errorMonitor" | "events.EventEmitterAsyncResource.captureRejections" | "events.EventEmitterAsyncResource.captureRejectionSymbol" | "events.EventEmitterAsyncResource.getEventListeners" | "events.EventEmitterAsyncResource.getMaxListeners" | "events.EventEmitterAsyncResource.once" | "events.EventEmitterAsyncResource.listenerCount" | "events.EventEmitterAsyncResource.on" | "events.EventEmitterAsyncResource.setMaxListeners" | "events.EventEmitterAsyncResource.addAbortListener" | "events.defaultMaxListeners" | "events.errorMonitor" | "events.captureRejections" | "events.captureRejectionSymbol" | "events.getEventListeners" | "events.getMaxListeners" | "events.once" | "events.listenerCount" | "events.on" | "events.setMaxListeners" | "events.addAbortListener" | "fs" | "fs.promises" | "fs.promises.FileHandle" | "fs.promises.access" | "fs.promises.appendFile" | "fs.promises.chmod" | "fs.promises.chown" | "fs.promises.constants" | "fs.promises.copyFile" | "fs.promises.cp" | "fs.promises.glob" | "fs.promises.lchmod" | "fs.promises.lchown" | "fs.promises.link" | "fs.promises.lstat" | "fs.promises.lutimes" | "fs.promises.mkdir" | "fs.promises.mkdtemp" | "fs.promises.open" | "fs.promises.opendir" | "fs.promises.readFile" | "fs.promises.readdir" | "fs.promises.readlink" | "fs.promises.realpath" | "fs.promises.rename" | "fs.promises.rm" | "fs.promises.rmdir" | "fs.promises.stat" | "fs.promises.statfs" | "fs.promises.symlink" | "fs.promises.truncate" | "fs.promises.unlink" | "fs.promises.utimes" | "fs.promises.watch" | "fs.promises.writeFile" | "fs.access" | "fs.appendFile" | "fs.chmod" | "fs.chown" | "fs.close" | "fs.copyFile" | "fs.cp" | "fs.createReadStream" | "fs.createWriteStream" | "fs.exists" | "fs.fchmod" | "fs.fchown" | "fs.fdatasync" | "fs.fstat" | "fs.fsync" | "fs.ftruncate" | "fs.futimes" | "fs.glob" | "fs.lchmod" | "fs.lchown" | "fs.link" | "fs.lstat" | "fs.lutimes" | "fs.mkdir" | "fs.mkdtemp" | "fs.native" | "fs.open" | "fs.openAsBlob" | "fs.opendir" | "fs.read" | "fs.readdir" | "fs.readFile" | "fs.readlink" | "fs.readv" | "fs.realpath" | "fs.realpath.native" | "fs.rename" | "fs.rm" | "fs.rmdir" | "fs.stat" | "fs.statfs" | "fs.symlink" | "fs.truncate" | "fs.unlink" | "fs.unwatchFile" | "fs.utimes" | "fs.watch" | "fs.watchFile" | "fs.write" | "fs.writeFile" | "fs.writev" | "fs.accessSync" | "fs.appendFileSync" | "fs.chmodSync" | "fs.chownSync" | "fs.closeSync" | "fs.copyFileSync" | "fs.cpSync" | "fs.existsSync" | "fs.fchmodSync" | "fs.fchownSync" | "fs.fdatasyncSync" | "fs.fstatSync" | "fs.fsyncSync" | "fs.ftruncateSync" | "fs.futimesSync" | "fs.globSync" | "fs.lchmodSync" | "fs.lchownSync" | "fs.linkSync" | "fs.lstatSync" | "fs.lutimesSync" | "fs.mkdirSync" | "fs.mkdtempSync" | "fs.opendirSync" | "fs.openSync" | "fs.readdirSync" | "fs.readFileSync" | "fs.readlinkSync" | "fs.readSync" | "fs.readvSync" | "fs.realpathSync" | "fs.realpathSync.native" | "fs.renameSync" | "fs.rmdirSync" | "fs.rmSync" | "fs.statfsSync" | "fs.statSync" | "fs.symlinkSync" | "fs.truncateSync" | "fs.unlinkSync" | "fs.utimesSync" | "fs.writeFileSync" | "fs.writeSync" | "fs.writevSync" | "fs.constants" | "fs.Dir" | "fs.Dirent" | "fs.FSWatcher" | "fs.StatWatcher" | "fs.ReadStream" | "fs.Stats()" | "new fs.Stats()" | "fs.Stats" | "fs.StatFs" | "fs.WriteStream" | "fs.common_objects" | "fs/promises" | "fs/promises.FileHandle" | "fs/promises.access" | "fs/promises.appendFile" | "fs/promises.chmod" | "fs/promises.chown" | "fs/promises.constants" | "fs/promises.copyFile" | "fs/promises.cp" | "fs/promises.glob" | "fs/promises.lchmod" | "fs/promises.lchown" | "fs/promises.link" | "fs/promises.lstat" | "fs/promises.lutimes" | "fs/promises.mkdir" | "fs/promises.mkdtemp" | "fs/promises.open" | "fs/promises.opendir" | "fs/promises.readFile" | "fs/promises.readdir" | "fs/promises.readlink" | "fs/promises.realpath" | "fs/promises.rename" | "fs/promises.rm" | "fs/promises.rmdir" | "fs/promises.stat" | "fs/promises.statfs" | "fs/promises.symlink" | "fs/promises.truncate" | "fs/promises.unlink" | "fs/promises.utimes" | "fs/promises.watch" | "fs/promises.writeFile" | "http2" | "http2.constants" | "http2.sensitiveHeaders" | "http2.createServer" | "http2.createSecureServer" | "http2.connect" | "http2.getDefaultSettings" | "http2.getPackedSettings" | "http2.getUnpackedSettings" | "http2.performServerHandshake" | "http2.Http2Session" | "http2.ServerHttp2Session" | "http2.ClientHttp2Session" | "http2.Http2Stream" | "http2.ClientHttp2Stream" | "http2.ServerHttp2Stream" | "http2.Http2Server" | "http2.Http2SecureServer" | "http2.Http2ServerRequest" | "http2.Http2ServerResponse" | "http" | "http.globalAgent" | "http.createServer" | "http.get" | "http.request" | "http.Agent" | "http.Server" | "inspector" | "inspector.Session" | "inspector.Network.loadingFailed" | "inspector.Network.loadingFinished" | "inspector.Network.requestWillBeSent" | "inspector.Network.responseReceived" | "inspector.console" | "inspector.close" | "inspector.open" | "inspector.url" | "inspector.waitForDebugger" | "inspector/promises" | "inspector/promises.Session" | "inspector/promises.console" | "inspector/promises.close" | "inspector/promises.open" | "inspector/promises.url" | "inspector/promises.waitForDebugger" | "module.builtinModules" | "module.constants.compileCacheStatus" | "module.createRequire" | "module.createRequireFromPath" | "module.enableCompileCache" | "module.findPackageJSON" | "module.flushCompileCache" | "module.getCompileCacheDir" | "module.isBuiltin" | "module.register" | "module.stripTypeScriptTypes" | "module.syncBuiltinESMExports" | "module.findSourceMap" | "module.SourceMap" | "module.Module.builtinModules" | "module.Module.createRequire" | "module.Module.createRequireFromPath" | "module.Module.enableCompileCache" | "module.Module.findPackageJSON" | "module.Module.flushCompileCache" | "module.Module.getCompileCacheDir" | "module.Module.isBuiltin" | "module.Module.register" | "module.Module.stripTypeScriptTypes" | "module.Module.syncBuiltinESMExports" | "module.Module.findSourceMap" | "module.Module.SourceMap" | "net" | "net.connect" | "net.createConnection" | "net.createServer" | "net.getDefaultAutoSelectFamily" | "net.setDefaultAutoSelectFamily" | "net.getDefaultAutoSelectFamilyAttemptTimeout" | "net.setDefaultAutoSelectFamilyAttemptTimeout" | "net.isIP" | "net.isIPv4" | "net.isIPv6" | "net.BlockList" | "net.SocketAddress" | "net.Server" | "net.Socket" | "os" | "os.EOL" | "os.constants" | "os.constants.priority" | "os.devNull" | "os.availableParallelism" | "os.arch" | "os.cpus" | "os.endianness" | "os.freemem" | "os.getPriority" | "os.homedir" | "os.hostname" | "os.loadavg" | "os.machine" | "os.networkInterfaces" | "os.platform" | "os.release" | "os.setPriority" | "os.tmpdir" | "os.totalmem" | "os.type" | "os.uptime" | "os.userInfo" | "os.version" | "path" | "path.posix" | "path.posix.delimiter" | "path.posix.sep" | "path.posix.basename" | "path.posix.dirname" | "path.posix.extname" | "path.posix.format" | "path.posix.matchesGlob" | "path.posix.isAbsolute" | "path.posix.join" | "path.posix.normalize" | "path.posix.parse" | "path.posix.relative" | "path.posix.resolve" | "path.posix.toNamespacedPath" | "path.win32" | "path.win32.delimiter" | "path.win32.sep" | "path.win32.basename" | "path.win32.dirname" | "path.win32.extname" | "path.win32.format" | "path.win32.matchesGlob" | "path.win32.isAbsolute" | "path.win32.join" | "path.win32.normalize" | "path.win32.parse" | "path.win32.relative" | "path.win32.resolve" | "path.win32.toNamespacedPath" | "path.delimiter" | "path.sep" | "path.basename" | "path.dirname" | "path.extname" | "path.format" | "path.matchesGlob" | "path.isAbsolute" | "path.join" | "path.normalize" | "path.parse" | "path.relative" | "path.resolve" | "path.toNamespacedPath" | "path/posix" | "path/posix.delimiter" | "path/posix.sep" | "path/posix.basename" | "path/posix.dirname" | "path/posix.extname" | "path/posix.format" | "path/posix.matchesGlob" | "path/posix.isAbsolute" | "path/posix.join" | "path/posix.normalize" | "path/posix.parse" | "path/posix.relative" | "path/posix.resolve" | "path/posix.toNamespacedPath" | "path/win32" | "path/win32.delimiter" | "path/win32.sep" | "path/win32.basename" | "path/win32.dirname" | "path/win32.extname" | "path/win32.format" | "path/win32.matchesGlob" | "path/win32.isAbsolute" | "path/win32.join" | "path/win32.normalize" | "path/win32.parse" | "path/win32.relative" | "path/win32.resolve" | "path/win32.toNamespacedPath" | "perf_hooks" | "perf_hooks.performance" | "perf_hooks.performance.clearMarks" | "perf_hooks.performance.clearMeasures" | "perf_hooks.performance.clearResourceTimings" | "perf_hooks.performance.eventLoopUtilization" | "perf_hooks.performance.getEntries" | "perf_hooks.performance.getEntriesByName" | "perf_hooks.performance.getEntriesByType" | "perf_hooks.performance.mark" | "perf_hooks.performance.markResourceTiming" | "perf_hooks.performance.measure" | "perf_hooks.performance.nodeTiming" | "perf_hooks.performance.nodeTiming.bootstrapComplete" | "perf_hooks.performance.nodeTiming.environment" | "perf_hooks.performance.nodeTiming.idleTime" | "perf_hooks.performance.nodeTiming.loopExit" | "perf_hooks.performance.nodeTiming.loopStart" | "perf_hooks.performance.nodeTiming.nodeStart" | "perf_hooks.performance.nodeTiming.uvMetricsInfo" | "perf_hooks.performance.nodeTiming.v8Start" | "perf_hooks.performance.now" | "perf_hooks.performance.onresourcetimingbufferfull" | "perf_hooks.performance.setResourceTimingBufferSize" | "perf_hooks.performance.timeOrigin" | "perf_hooks.performance.timerify" | "perf_hooks.performance.toJSON" | "perf_hooks.createHistogram" | "perf_hooks.monitorEventLoopDelay" | "perf_hooks.PerformanceEntry" | "perf_hooks.PerformanceMark" | "perf_hooks.PerformanceMeasure" | "perf_hooks.PerformanceNodeEntry" | "perf_hooks.PerformanceNodeTiming" | "perf_hooks.PerformanceResourceTiming" | "perf_hooks.PerformanceObserver" | "perf_hooks.PerformanceObserverEntryList" | "perf_hooks.Histogram" | "perf_hooks.IntervalHistogram" | "perf_hooks.RecordableHistogram" | "punycode" | "punycode.ucs2" | "punycode.version" | "punycode.decode" | "punycode.encode" | "punycode.toASCII" | "punycode.toUnicode" | "querystring" | "querystring.decode" | "querystring.encode" | "querystring.escape" | "querystring.parse" | "querystring.stringify" | "querystring.unescape" | "readline" | "readline.promises" | "readline.promises.createInterface" | "readline.promises.Interface" | "readline.promises.Readline" | "readline.clearLine" | "readline.clearScreenDown" | "readline.createInterface" | "readline.cursorTo" | "readline.moveCursor" | "readline.Interface" | "readline.emitKeypressEvents" | "readline.InterfaceConstructor" | "readline/promises" | "readline/promises.createInterface" | "readline/promises.Interface" | "readline/promises.Readline" | "repl" | "repl.start" | "repl.writer" | "repl.REPLServer()" | "repl.REPLServer" | "repl.REPL_MODE_MAGIC" | "repl.REPL_MODE_SLOPPY" | "repl.REPL_MODE_STRICT" | "repl.Recoverable()" | "repl.Recoverable" | "repl.builtinModules" | "sea" | "sea.isSea" | "sea.getAsset" | "sea.getAssetAsBlob" | "sea.getRawAsset" | "sea.sea.isSea" | "sea.sea.getAsset" | "sea.sea.getAssetAsBlob" | "sea.sea.getRawAsset" | "stream" | "stream.promises" | "stream.promises.pipeline" | "stream.promises.finished" | "stream.finished" | "stream.pipeline" | "stream.compose" | "stream.duplexPair" | "stream.Readable" | "stream.Readable.from" | "stream.Readable.isDisturbed" | "stream.Readable.fromWeb" | "stream.Readable.toWeb" | "stream.Writable" | "stream.Writable.fromWeb" | "stream.Writable.toWeb" | "stream.Duplex" | "stream.Duplex.from" | "stream.Duplex.fromWeb" | "stream.Duplex.toWeb" | "stream.Transform" | "stream.isErrored" | "stream.isReadable" | "stream.addAbortSignal" | "stream.getDefaultHighWaterMark" | "stream.setDefaultHighWaterMark" | "stream/promises.pipeline" | "stream/promises.finished" | "stream/web" | "stream/web.ReadableStream" | "stream/web.ReadableStream.from" | "stream/web.ReadableStreamDefaultReader" | "stream/web.ReadableStreamBYOBReader" | "stream/web.ReadableStreamDefaultController" | "stream/web.ReadableByteStreamController" | "stream/web.ReadableStreamBYOBRequest" | "stream/web.WritableStream" | "stream/web.WritableStreamDefaultWriter" | "stream/web.WritableStreamDefaultController" | "stream/web.TransformStream" | "stream/web.TransformStreamDefaultController" | "stream/web.ByteLengthQueuingStrategy" | "stream/web.CountQueuingStrategy" | "stream/web.TextEncoderStream" | "stream/web.TextDecoderStream" | "stream/web.CompressionStream" | "stream/web.DecompressionStream" | "stream/consumers" | "stream/consumers.arrayBuffer" | "stream/consumers.blob" | "stream/consumers.buffer" | "stream/consumers.json" | "stream/consumers.text" | "string_decoder" | "string_decoder.StringDecoder" | "test" | "test.after" | "test.afterEach" | "test.before" | "test.beforeEach" | "test.describe" | "test.describe.only" | "test.describe.skip" | "test.describe.todo" | "test.it" | "test.it.only" | "test.it.skip" | "test.it.todo" | "test.mock" | "test.mock.fn" | "test.mock.getter" | "test.mock.method" | "test.mock.module" | "test.mock.reset" | "test.mock.restoreAll" | "test.mock.setter" | "test.mock.timers" | "test.mock.timers.enable" | "test.mock.timers.reset" | "test.mock.timers.tick" | "test.only" | "test.run" | "test.snapshot" | "test.snapshot.setDefaultSnapshotSerializers" | "test.snapshot.setResolveSnapshotPath" | "test.skip" | "test.suite" | "test.test" | "test.test.only" | "test.test.skip" | "test.test.todo" | "test.todo" | "timers" | "timers.Immediate" | "timers.Timeout" | "timers.setImmediate" | "timers.clearImmediate" | "timers.setInterval" | "timers.clearInterval" | "timers.setTimeout" | "timers.clearTimeout" | "timers.promises" | "timers.promises.setTimeout" | "timers.promises.setImmediate" | "timers.promises.setInterval" | "timers.promises.scheduler.wait" | "timers.promises.scheduler.yield" | "timers/promises" | "timers/promises.setTimeout" | "timers/promises.setImmediate" | "timers/promises.setInterval" | "tls" | "tls.rootCertificates" | "tls.DEFAULT_ECDH_CURVE" | "tls.DEFAULT_MAX_VERSION" | "tls.DEFAULT_MIN_VERSION" | "tls.DEFAULT_CIPHERS" | "tls.checkServerIdentity" | "tls.connect" | "tls.createSecureContext" | "tls.createSecurePair" | "tls.createServer" | "tls.getCiphers" | "tls.SecureContext" | "tls.CryptoStream" | "tls.SecurePair" | "tls.Server" | "tls.TLSSocket" | "trace_events" | "trace_events.createTracing" | "trace_events.getEnabledCategories" | "tty" | "tty.isatty" | "tty.ReadStream" | "tty.WriteStream" | "url" | "url.domainToASCII" | "url.domainToUnicode" | "url.fileURLToPath" | "url.format" | "url.pathToFileURL" | "url.urlToHttpOptions" | "url.URL" | "url.URL.canParse" | "url.URL.createObjectURL" | "url.URL.revokeObjectURL" | "url.URLSearchParams" | "url.Url" | "util.promisify" | "util.promisify.custom" | "util.callbackify" | "util.debuglog" | "util.debug" | "util.deprecate" | "util.format" | "util.formatWithOptions" | "util.getCallSite" | "util.getCallSites" | "util.getSystemErrorName" | "util.getSystemErrorMap" | "util.getSystemErrorMessage" | "util.inherits" | "util.inspect" | "util.inspect.custom" | "util.inspect.defaultOptions" | "util.inspect.replDefaults" | "util.isDeepStrictEqual" | "util.parseArgs" | "util.parseEnv" | "util.stripVTControlCharacters" | "util.styleText" | "util.toUSVString" | "util.transferableAbortController" | "util.transferableAbortSignal" | "util.aborted" | "util.MIMEType" | "util.MIMEParams" | "util.TextDecoder" | "util.TextEncoder" | "util.types" | "util.types.isExternal" | "util.types.isDate" | "util.types.isArgumentsObject" | "util.types.isBigIntObject" | "util.types.isBooleanObject" | "util.types.isNumberObject" | "util.types.isStringObject" | "util.types.isSymbolObject" | "util.types.isNativeError" | "util.types.isRegExp" | "util.types.isAsyncFunction" | "util.types.isGeneratorFunction" | "util.types.isGeneratorObject" | "util.types.isPromise" | "util.types.isMap" | "util.types.isSet" | "util.types.isMapIterator" | "util.types.isSetIterator" | "util.types.isWeakMap" | "util.types.isWeakSet" | "util.types.isArrayBuffer" | "util.types.isDataView" | "util.types.isSharedArrayBuffer" | "util.types.isProxy" | "util.types.isModuleNamespaceObject" | "util.types.isAnyArrayBuffer" | "util.types.isBoxedPrimitive" | "util.types.isArrayBufferView" | "util.types.isTypedArray" | "util.types.isUint8Array" | "util.types.isUint8ClampedArray" | "util.types.isUint16Array" | "util.types.isUint32Array" | "util.types.isInt8Array" | "util.types.isInt16Array" | "util.types.isInt32Array" | "util.types.isFloat32Array" | "util.types.isFloat64Array" | "util.types.isBigInt64Array" | "util.types.isBigUint64Array" | "util.types.isKeyObject" | "util.types.isCryptoKey" | "util.types.isWebAssemblyCompiledModule" | "util._extend" | "util.isArray" | "util.isBoolean" | "util.isBuffer" | "util.isDate" | "util.isError" | "util.isFunction" | "util.isNull" | "util.isNullOrUndefined" | "util.isNumber" | "util.isObject" | "util.isPrimitive" | "util.isRegExp" | "util.isString" | "util.isSymbol" | "util.isUndefined" | "util.log" | "util" | "util/types" | "util/types.isExternal" | "util/types.isDate" | "util/types.isArgumentsObject" | "util/types.isBigIntObject" | "util/types.isBooleanObject" | "util/types.isNumberObject" | "util/types.isStringObject" | "util/types.isSymbolObject" | "util/types.isNativeError" | "util/types.isRegExp" | "util/types.isAsyncFunction" | "util/types.isGeneratorFunction" | "util/types.isGeneratorObject" | "util/types.isPromise" | "util/types.isMap" | "util/types.isSet" | "util/types.isMapIterator" | "util/types.isSetIterator" | "util/types.isWeakMap" | "util/types.isWeakSet" | "util/types.isArrayBuffer" | "util/types.isDataView" | "util/types.isSharedArrayBuffer" | "util/types.isProxy" | "util/types.isModuleNamespaceObject" | "util/types.isAnyArrayBuffer" | "util/types.isBoxedPrimitive" | "util/types.isArrayBufferView" | "util/types.isTypedArray" | "util/types.isUint8Array" | "util/types.isUint8ClampedArray" | "util/types.isUint16Array" | "util/types.isUint32Array" | "util/types.isInt8Array" | "util/types.isInt16Array" | "util/types.isInt32Array" | "util/types.isFloat32Array" | "util/types.isFloat64Array" | "util/types.isBigInt64Array" | "util/types.isBigUint64Array" | "util/types.isKeyObject" | "util/types.isCryptoKey" | "util/types.isWebAssemblyCompiledModule" | "v8" | "v8.serialize" | "v8.deserialize" | "v8.Serializer" | "v8.Deserializer" | "v8.DefaultSerializer" | "v8.DefaultDeserializer" | "v8.promiseHooks" | "v8.promiseHooks.onInit" | "v8.promiseHooks.onSettled" | "v8.promiseHooks.onBefore" | "v8.promiseHooks.onAfter" | "v8.promiseHooks.createHook" | "v8.startupSnapshot" | "v8.startupSnapshot.addSerializeCallback" | "v8.startupSnapshot.addDeserializeCallback" | "v8.startupSnapshot.setDeserializeMainFunction" | "v8.startupSnapshot.isBuildingSnapshot" | "v8.cachedDataVersionTag" | "v8.getHeapCodeStatistics" | "v8.getHeapSnapshot" | "v8.getHeapSpaceStatistics" | "v8.getHeapStatistics" | "v8.queryObjects" | "v8.setFlagsFromString" | "v8.stopCoverage" | "v8.takeCoverage" | "v8.writeHeapSnapshot" | "v8.setHeapSnapshotNearHeapLimit" | "v8.GCProfiler" | "vm.constants" | "vm.compileFunction" | "vm.createContext" | "vm.isContext" | "vm.measureMemory" | "vm.runInContext" | "vm.runInNewContext" | "vm.runInThisContext" | "vm.Script" | "vm.Module" | "vm.SourceTextModule" | "vm.SyntheticModule" | "vm" | "wasi.WASI" | "wasi" | "worker_threads" | "worker_threads.isMainThread" | "worker_threads.parentPort" | "worker_threads.resourceLimits" | "worker_threads.SHARE_ENV" | "worker_threads.threadId" | "worker_threads.workerData" | "worker_threads.getEnvironmentData" | "worker_threads.markAsUncloneable" | "worker_threads.markAsUntransferable" | "worker_threads.isMarkedAsUntransferable" | "worker_threads.moveMessagePortToContext" | "worker_threads.postMessageToThread" | "worker_threads.receiveMessageOnPort" | "worker_threads.setEnvironmentData" | "worker_threads.BroadcastChannel" | "worker_threads.MessageChannel" | "worker_threads.MessagePort" | "worker_threads.Worker" | "zlib.constants" | "zlib.crc32" | "zlib.createBrotliCompress" | "zlib.createBrotliDecompress" | "zlib.createDeflate" | "zlib.createDeflateRaw" | "zlib.createGunzip" | "zlib.createGzip" | "zlib.createInflate" | "zlib.createInflateRaw" | "zlib.createUnzip" | "zlib.brotliCompress" | "zlib.brotliCompressSync" | "zlib.brotliDecompress" | "zlib.brotliDecompressSync" | "zlib.deflate" | "zlib.deflateSync" | "zlib.deflateRaw" | "zlib.deflateRawSync" | "zlib.gunzip" | "zlib.gunzipSync" | "zlib.gzip" | "zlib.gzipSync" | "zlib.inflate" | "zlib.inflateSync" | "zlib.inflateRaw" | "zlib.inflateRawSync" | "zlib.unzip" | "zlib.unzipSync" | "zlib.BrotliCompress()" | "zlib.BrotliCompress" | "zlib.BrotliDecompress()" | "zlib.BrotliDecompress" | "zlib.Deflate()" | "zlib.Deflate" | "zlib.DeflateRaw()" | "zlib.DeflateRaw" | "zlib.Gunzip()" | "zlib.Gunzip" | "zlib.Gzip()" | "zlib.Gzip" | "zlib.Inflate()" | "zlib.Inflate" | "zlib.InflateRaw()" | "zlib.InflateRaw" | "zlib.Unzip()" | "zlib.Unzip" | "zlib")[];
9577
+ ignores?: ("__filename" | "__dirname" | "require" | "require.cache" | "require.extensions" | "require.main" | "require.resolve" | "require.resolve.paths" | "module" | "module.children" | "module.exports" | "module.filename" | "module.id" | "module.isPreloading" | "module.loaded" | "module.parent" | "module.path" | "module.paths" | "module.require" | "exports" | "AbortController" | "AbortSignal" | "AbortSignal.abort" | "AbortSignal.timeout" | "AbortSignal.any" | "DOMException" | "FormData" | "Headers" | "MessageEvent" | "Navigator" | "Request" | "Response" | "WebAssembly" | "WebSocket" | "fetch" | "global" | "queueMicrotask" | "navigator" | "navigator.hardwareConcurrency" | "navigator.language" | "navigator.languages" | "navigator.platform" | "navigator.userAgent" | "structuredClone" | "localStorage" | "sessionStorage" | "Storage" | "Blob" | "new Buffer()" | "Buffer" | "Buffer.alloc" | "Buffer.allocUnsafe" | "Buffer.allocUnsafeSlow" | "Buffer.byteLength" | "Buffer.compare" | "Buffer.concat" | "Buffer.copyBytesFrom" | "Buffer.from" | "Buffer.isBuffer" | "Buffer.isEncoding" | "File" | "atob" | "btoa" | "console" | "console.profile" | "console.profileEnd" | "console.timeStamp" | "console.Console" | "console.assert" | "console.clear" | "console.count" | "console.countReset" | "console.debug" | "console.dir" | "console.dirxml" | "console.error" | "console.group" | "console.groupCollapsed" | "console.groupEnd" | "console.info" | "console.log" | "console.table" | "console.time" | "console.timeEnd" | "console.timeLog" | "console.trace" | "console.warn" | "crypto" | "crypto.subtle" | "crypto.subtle.decrypt" | "crypto.subtle.deriveBits" | "crypto.subtle.deriveKey" | "crypto.subtle.digest" | "crypto.subtle.encrypt" | "crypto.subtle.exportKey" | "crypto.subtle.generateKey" | "crypto.subtle.importKey" | "crypto.subtle.sign" | "crypto.subtle.unwrapKey" | "crypto.subtle.verify" | "crypto.subtle.wrapKey" | "crypto.getRandomValues" | "crypto.randomUUID" | "Crypto" | "CryptoKey" | "SubtleCrypto" | "CloseEvent" | "CustomEvent" | "Event" | "EventSource" | "EventTarget" | "PerformanceEntry" | "PerformanceMark" | "PerformanceMeasure" | "PerformanceObserver" | "PerformanceObserverEntryList" | "PerformanceResourceTiming" | "performance" | "performance.clearMarks" | "performance.clearMeasures" | "performance.clearResourceTimings" | "performance.eventLoopUtilization" | "performance.getEntries" | "performance.getEntriesByName" | "performance.getEntriesByType" | "performance.mark" | "performance.markResourceTiming" | "performance.measure" | "performance.nodeTiming" | "performance.nodeTiming.bootstrapComplete" | "performance.nodeTiming.environment" | "performance.nodeTiming.idleTime" | "performance.nodeTiming.loopExit" | "performance.nodeTiming.loopStart" | "performance.nodeTiming.nodeStart" | "performance.nodeTiming.uvMetricsInfo" | "performance.nodeTiming.v8Start" | "performance.now" | "performance.onresourcetimingbufferfull" | "performance.setResourceTimingBufferSize" | "performance.timeOrigin" | "performance.timerify" | "performance.toJSON" | "process" | "process.allowedNodeEnvironmentFlags" | "process.availableMemory" | "process.arch" | "process.argv" | "process.argv0" | "process.channel" | "process.config" | "process.connected" | "process.debugPort" | "process.env" | "process.execArgv" | "process.execPath" | "process.exitCode" | "process.features.cached_builtins" | "process.features.debug" | "process.features.inspector" | "process.features.ipv6" | "process.features.require_module" | "process.features.tls" | "process.features.tls_alpn" | "process.features.tls_ocsp" | "process.features.tls_sni" | "process.features.typescript" | "process.features.uv" | "process.finalization.register" | "process.finalization.registerBeforeExit" | "process.finalization.unregister" | "process.getBuiltinModule" | "process.mainModule" | "process.noDeprecation" | "process.permission" | "process.pid" | "process.platform" | "process.ppid" | "process.release" | "process.report" | "process.report.excludeEnv" | "process.sourceMapsEnabled" | "process.stdin" | "process.stdin.isRaw" | "process.stdin.isTTY" | "process.stdin.setRawMode" | "process.stdout" | "process.stdout.clearLine" | "process.stdout.clearScreenDown" | "process.stdout.columns" | "process.stdout.cursorTo" | "process.stdout.getColorDepth" | "process.stdout.getWindowSize" | "process.stdout.hasColors" | "process.stdout.isTTY" | "process.stdout.moveCursor" | "process.stdout.rows" | "process.stderr" | "process.stderr.clearLine" | "process.stderr.clearScreenDown" | "process.stderr.columns" | "process.stderr.cursorTo" | "process.stderr.getColorDepth" | "process.stderr.getWindowSize" | "process.stderr.hasColors" | "process.stderr.isTTY" | "process.stderr.moveCursor" | "process.stderr.rows" | "process.throwDeprecation" | "process.title" | "process.traceDeprecation" | "process.version" | "process.versions" | "process.abort" | "process.chdir" | "process.constrainedMemory" | "process.cpuUsage" | "process.cwd" | "process.disconnect" | "process.dlopen" | "process.emitWarning" | "process.exit" | "process.getActiveResourcesInfo" | "process.getegid" | "process.geteuid" | "process.getgid" | "process.getgroups" | "process.getuid" | "process.hasUncaughtExceptionCaptureCallback" | "process.hrtime" | "process.hrtime.bigint" | "process.initgroups" | "process.kill" | "process.loadEnvFile" | "process.memoryUsage" | "process.rss" | "process.nextTick" | "process.resourceUsage" | "process.send" | "process.setegid" | "process.seteuid" | "process.setgid" | "process.setgroups" | "process.setuid" | "process.setSourceMapsEnabled" | "process.setUncaughtExceptionCaptureCallback" | "process.umask" | "process.uptime" | "ReadableStream" | "ReadableStream.from" | "ReadableStreamDefaultReader" | "ReadableStreamBYOBReader" | "ReadableStreamDefaultController" | "ReadableByteStreamController" | "ReadableStreamBYOBRequest" | "WritableStream" | "WritableStreamDefaultWriter" | "WritableStreamDefaultController" | "TransformStream" | "TransformStreamDefaultController" | "ByteLengthQueuingStrategy" | "CountQueuingStrategy" | "TextEncoderStream" | "TextDecoderStream" | "CompressionStream" | "DecompressionStream" | "setInterval" | "clearInterval" | "setTimeout" | "clearTimeout" | "setImmediate" | "clearImmediate" | "URL" | "URL.canParse" | "URL.createObjectURL" | "URL.revokeObjectURL" | "URLSearchParams" | "TextDecoder" | "TextEncoder" | "BroadcastChannel" | "MessageChannel" | "MessagePort" | "assert" | "assert.assert" | "assert.deepEqual" | "assert.deepStrictEqual" | "assert.doesNotMatch" | "assert.doesNotReject" | "assert.doesNotThrow" | "assert.equal" | "assert.fail" | "assert.ifError" | "assert.match" | "assert.notDeepEqual" | "assert.notDeepStrictEqual" | "assert.notEqual" | "assert.notStrictEqual" | "assert.ok" | "assert.rejects" | "assert.strictEqual" | "assert.throws" | "assert.CallTracker" | "assert.strict" | "assert.strict.assert" | "assert.strict.deepEqual" | "assert.strict.deepStrictEqual" | "assert.strict.doesNotMatch" | "assert.strict.doesNotReject" | "assert.strict.doesNotThrow" | "assert.strict.equal" | "assert.strict.fail" | "assert.strict.ifError" | "assert.strict.match" | "assert.strict.notDeepEqual" | "assert.strict.notDeepStrictEqual" | "assert.strict.notEqual" | "assert.strict.notStrictEqual" | "assert.strict.ok" | "assert.strict.rejects" | "assert.strict.strictEqual" | "assert.strict.throws" | "assert.strict.CallTracker" | "assert/strict" | "assert/strict.assert" | "assert/strict.deepEqual" | "assert/strict.deepStrictEqual" | "assert/strict.doesNotMatch" | "assert/strict.doesNotReject" | "assert/strict.doesNotThrow" | "assert/strict.equal" | "assert/strict.fail" | "assert/strict.ifError" | "assert/strict.match" | "assert/strict.notDeepEqual" | "assert/strict.notDeepStrictEqual" | "assert/strict.notEqual" | "assert/strict.notStrictEqual" | "assert/strict.ok" | "assert/strict.rejects" | "assert/strict.strictEqual" | "assert/strict.throws" | "assert/strict.CallTracker" | "async_hooks" | "async_hooks.createHook" | "async_hooks.executionAsyncResource" | "async_hooks.executionAsyncId" | "async_hooks.triggerAsyncId" | "async_hooks.AsyncLocalStorage" | "async_hooks.AsyncLocalStorage.bind" | "async_hooks.AsyncLocalStorage.snapshot" | "async_hooks.AsyncResource" | "async_hooks.AsyncResource.bind" | "buffer" | "buffer.constants" | "buffer.INSPECT_MAX_BYTES" | "buffer.kMaxLength" | "buffer.kStringMaxLength" | "buffer.atob" | "buffer.btoa" | "buffer.isAscii" | "buffer.isUtf8" | "buffer.resolveObjectURL" | "buffer.transcode" | "buffer.SlowBuffer" | "buffer.Blob" | "new buffer.Buffer()" | "buffer.Buffer" | "buffer.Buffer.alloc" | "buffer.Buffer.allocUnsafe" | "buffer.Buffer.allocUnsafeSlow" | "buffer.Buffer.byteLength" | "buffer.Buffer.compare" | "buffer.Buffer.concat" | "buffer.Buffer.copyBytesFrom" | "buffer.Buffer.from" | "buffer.Buffer.isBuffer" | "buffer.Buffer.isEncoding" | "buffer.File" | "child_process" | "child_process.exec" | "child_process.execFile" | "child_process.fork" | "child_process.spawn" | "child_process.execFileSync" | "child_process.execSync" | "child_process.spawnSync" | "child_process.ChildProcess" | "cluster" | "cluster.isMaster" | "cluster.isPrimary" | "cluster.isWorker" | "cluster.schedulingPolicy" | "cluster.settings" | "cluster.worker" | "cluster.workers" | "cluster.disconnect" | "cluster.fork" | "cluster.setupMaster" | "cluster.setupPrimary" | "cluster.Worker" | "crypto.constants" | "crypto.fips" | "crypto.webcrypto" | "crypto.webcrypto.subtle" | "crypto.webcrypto.subtle.decrypt" | "crypto.webcrypto.subtle.deriveBits" | "crypto.webcrypto.subtle.deriveKey" | "crypto.webcrypto.subtle.digest" | "crypto.webcrypto.subtle.encrypt" | "crypto.webcrypto.subtle.exportKey" | "crypto.webcrypto.subtle.generateKey" | "crypto.webcrypto.subtle.importKey" | "crypto.webcrypto.subtle.sign" | "crypto.webcrypto.subtle.unwrapKey" | "crypto.webcrypto.subtle.verify" | "crypto.webcrypto.subtle.wrapKey" | "crypto.webcrypto.getRandomValues" | "crypto.webcrypto.randomUUID" | "crypto.checkPrime" | "crypto.checkPrimeSync" | "crypto.createCipher" | "crypto.createCipheriv" | "crypto.createDecipher" | "crypto.createDecipheriv" | "crypto.createDiffieHellman" | "crypto.createDiffieHellmanGroup" | "crypto.createECDH" | "crypto.createHash" | "crypto.createHmac" | "crypto.createPrivateKey" | "crypto.createPublicKey" | "crypto.createSecretKey" | "crypto.createSign" | "crypto.createVerify" | "crypto.diffieHellman" | "crypto.generateKey" | "crypto.generateKeyPair" | "crypto.generateKeyPairSync" | "crypto.generateKeySync" | "crypto.generatePrime" | "crypto.generatePrimeSync" | "crypto.getCipherInfo" | "crypto.getCiphers" | "crypto.getCurves" | "crypto.getDiffieHellman" | "crypto.getFips" | "crypto.getHashes" | "crypto.hash" | "crypto.hkdf" | "crypto.hkdfSync" | "crypto.pbkdf2" | "crypto.pbkdf2Sync" | "crypto.privateDecrypt" | "crypto.privateEncrypt" | "crypto.publicDecrypt" | "crypto.publicEncrypt" | "crypto.randomBytes" | "crypto.randomFillSync" | "crypto.randomFill" | "crypto.randomInt" | "crypto.scrypt" | "crypto.scryptSync" | "crypto.secureHeapUsed" | "crypto.setEngine" | "crypto.setFips" | "crypto.sign" | "crypto.timingSafeEqual" | "crypto.verify" | "crypto.Certificate" | "crypto.Certificate.exportChallenge" | "crypto.Certificate.exportPublicKey" | "crypto.Certificate.verifySpkac" | "crypto.Cipher" | "crypto.Decipher" | "crypto.DiffieHellman" | "crypto.DiffieHellmanGroup" | "crypto.ECDH" | "crypto.ECDH.convertKey" | "crypto.Hash()" | "new crypto.Hash()" | "crypto.Hash" | "crypto.Hmac()" | "new crypto.Hmac()" | "crypto.Hmac" | "crypto.KeyObject" | "crypto.KeyObject.from" | "crypto.Sign" | "crypto.Verify" | "crypto.X509Certificate" | "dgram" | "dgram.createSocket" | "dgram.Socket" | "diagnostics_channel" | "diagnostics_channel.hasSubscribers" | "diagnostics_channel.channel" | "diagnostics_channel.subscribe" | "diagnostics_channel.unsubscribe" | "diagnostics_channel.tracingChannel" | "diagnostics_channel.Channel" | "diagnostics_channel.TracingChannel" | "dns" | "dns.Resolver" | "dns.getServers" | "dns.lookup" | "dns.lookupService" | "dns.resolve" | "dns.resolve4" | "dns.resolve6" | "dns.resolveAny" | "dns.resolveCname" | "dns.resolveCaa" | "dns.resolveMx" | "dns.resolveNaptr" | "dns.resolveNs" | "dns.resolvePtr" | "dns.resolveSoa" | "dns.resolveSrv" | "dns.resolveTxt" | "dns.reverse" | "dns.setDefaultResultOrder" | "dns.getDefaultResultOrder" | "dns.setServers" | "dns.promises" | "dns.promises.Resolver" | "dns.promises.cancel" | "dns.promises.getServers" | "dns.promises.lookup" | "dns.promises.lookupService" | "dns.promises.resolve" | "dns.promises.resolve4" | "dns.promises.resolve6" | "dns.promises.resolveAny" | "dns.promises.resolveCaa" | "dns.promises.resolveCname" | "dns.promises.resolveMx" | "dns.promises.resolveNaptr" | "dns.promises.resolveNs" | "dns.promises.resolvePtr" | "dns.promises.resolveSoa" | "dns.promises.resolveSrv" | "dns.promises.resolveTxt" | "dns.promises.reverse" | "dns.promises.setDefaultResultOrder" | "dns.promises.getDefaultResultOrder" | "dns.promises.setServers" | "dns/promises" | "dns/promises.Resolver" | "dns/promises.cancel" | "dns/promises.getServers" | "dns/promises.lookup" | "dns/promises.lookupService" | "dns/promises.resolve" | "dns/promises.resolve4" | "dns/promises.resolve6" | "dns/promises.resolveAny" | "dns/promises.resolveCaa" | "dns/promises.resolveCname" | "dns/promises.resolveMx" | "dns/promises.resolveNaptr" | "dns/promises.resolveNs" | "dns/promises.resolvePtr" | "dns/promises.resolveSoa" | "dns/promises.resolveSrv" | "dns/promises.resolveTxt" | "dns/promises.reverse" | "dns/promises.setDefaultResultOrder" | "dns/promises.getDefaultResultOrder" | "dns/promises.setServers" | "domain" | "domain.create" | "domain.Domain" | "events" | "events.Event" | "events.EventTarget" | "events.CustomEvent" | "events.NodeEventTarget" | "events.EventEmitter" | "events.EventEmitter.defaultMaxListeners" | "events.EventEmitter.errorMonitor" | "events.EventEmitter.captureRejections" | "events.EventEmitter.captureRejectionSymbol" | "events.EventEmitter.getEventListeners" | "events.EventEmitter.getMaxListeners" | "events.EventEmitter.once" | "events.EventEmitter.listenerCount" | "events.EventEmitter.on" | "events.EventEmitter.setMaxListeners" | "events.EventEmitter.addAbortListener" | "events.EventEmitterAsyncResource" | "events.EventEmitterAsyncResource.defaultMaxListeners" | "events.EventEmitterAsyncResource.errorMonitor" | "events.EventEmitterAsyncResource.captureRejections" | "events.EventEmitterAsyncResource.captureRejectionSymbol" | "events.EventEmitterAsyncResource.getEventListeners" | "events.EventEmitterAsyncResource.getMaxListeners" | "events.EventEmitterAsyncResource.once" | "events.EventEmitterAsyncResource.listenerCount" | "events.EventEmitterAsyncResource.on" | "events.EventEmitterAsyncResource.setMaxListeners" | "events.EventEmitterAsyncResource.addAbortListener" | "events.defaultMaxListeners" | "events.errorMonitor" | "events.captureRejections" | "events.captureRejectionSymbol" | "events.getEventListeners" | "events.getMaxListeners" | "events.once" | "events.listenerCount" | "events.on" | "events.setMaxListeners" | "events.addAbortListener" | "fs" | "fs.promises" | "fs.promises.FileHandle" | "fs.promises.access" | "fs.promises.appendFile" | "fs.promises.chmod" | "fs.promises.chown" | "fs.promises.constants" | "fs.promises.copyFile" | "fs.promises.cp" | "fs.promises.glob" | "fs.promises.lchmod" | "fs.promises.lchown" | "fs.promises.link" | "fs.promises.lstat" | "fs.promises.lutimes" | "fs.promises.mkdir" | "fs.promises.mkdtemp" | "fs.promises.open" | "fs.promises.opendir" | "fs.promises.readFile" | "fs.promises.readdir" | "fs.promises.readlink" | "fs.promises.realpath" | "fs.promises.rename" | "fs.promises.rm" | "fs.promises.rmdir" | "fs.promises.stat" | "fs.promises.statfs" | "fs.promises.symlink" | "fs.promises.truncate" | "fs.promises.unlink" | "fs.promises.utimes" | "fs.promises.watch" | "fs.promises.writeFile" | "fs.access" | "fs.appendFile" | "fs.chmod" | "fs.chown" | "fs.close" | "fs.copyFile" | "fs.cp" | "fs.createReadStream" | "fs.createWriteStream" | "fs.exists" | "fs.fchmod" | "fs.fchown" | "fs.fdatasync" | "fs.fstat" | "fs.fsync" | "fs.ftruncate" | "fs.futimes" | "fs.glob" | "fs.lchmod" | "fs.lchown" | "fs.link" | "fs.lstat" | "fs.lutimes" | "fs.mkdir" | "fs.mkdtemp" | "fs.native" | "fs.open" | "fs.openAsBlob" | "fs.opendir" | "fs.read" | "fs.readdir" | "fs.readFile" | "fs.readlink" | "fs.readv" | "fs.realpath" | "fs.realpath.native" | "fs.rename" | "fs.rm" | "fs.rmdir" | "fs.stat" | "fs.statfs" | "fs.symlink" | "fs.truncate" | "fs.unlink" | "fs.unwatchFile" | "fs.utimes" | "fs.watch" | "fs.watchFile" | "fs.write" | "fs.writeFile" | "fs.writev" | "fs.accessSync" | "fs.appendFileSync" | "fs.chmodSync" | "fs.chownSync" | "fs.closeSync" | "fs.copyFileSync" | "fs.cpSync" | "fs.existsSync" | "fs.fchmodSync" | "fs.fchownSync" | "fs.fdatasyncSync" | "fs.fstatSync" | "fs.fsyncSync" | "fs.ftruncateSync" | "fs.futimesSync" | "fs.globSync" | "fs.lchmodSync" | "fs.lchownSync" | "fs.linkSync" | "fs.lstatSync" | "fs.lutimesSync" | "fs.mkdirSync" | "fs.mkdtempSync" | "fs.opendirSync" | "fs.openSync" | "fs.readdirSync" | "fs.readFileSync" | "fs.readlinkSync" | "fs.readSync" | "fs.readvSync" | "fs.realpathSync" | "fs.realpathSync.native" | "fs.renameSync" | "fs.rmdirSync" | "fs.rmSync" | "fs.statfsSync" | "fs.statSync" | "fs.symlinkSync" | "fs.truncateSync" | "fs.unlinkSync" | "fs.utimesSync" | "fs.writeFileSync" | "fs.writeSync" | "fs.writevSync" | "fs.constants" | "fs.Dir" | "fs.Dirent" | "fs.FSWatcher" | "fs.StatWatcher" | "fs.ReadStream" | "fs.Stats()" | "new fs.Stats()" | "fs.Stats" | "fs.StatFs" | "fs.WriteStream" | "fs.common_objects" | "fs/promises" | "fs/promises.FileHandle" | "fs/promises.access" | "fs/promises.appendFile" | "fs/promises.chmod" | "fs/promises.chown" | "fs/promises.constants" | "fs/promises.copyFile" | "fs/promises.cp" | "fs/promises.glob" | "fs/promises.lchmod" | "fs/promises.lchown" | "fs/promises.link" | "fs/promises.lstat" | "fs/promises.lutimes" | "fs/promises.mkdir" | "fs/promises.mkdtemp" | "fs/promises.open" | "fs/promises.opendir" | "fs/promises.readFile" | "fs/promises.readdir" | "fs/promises.readlink" | "fs/promises.realpath" | "fs/promises.rename" | "fs/promises.rm" | "fs/promises.rmdir" | "fs/promises.stat" | "fs/promises.statfs" | "fs/promises.symlink" | "fs/promises.truncate" | "fs/promises.unlink" | "fs/promises.utimes" | "fs/promises.watch" | "fs/promises.writeFile" | "http2" | "http2.constants" | "http2.sensitiveHeaders" | "http2.createServer" | "http2.createSecureServer" | "http2.connect" | "http2.getDefaultSettings" | "http2.getPackedSettings" | "http2.getUnpackedSettings" | "http2.performServerHandshake" | "http2.Http2Session" | "http2.ServerHttp2Session" | "http2.ClientHttp2Session" | "http2.Http2Stream" | "http2.ClientHttp2Stream" | "http2.ServerHttp2Stream" | "http2.Http2Server" | "http2.Http2SecureServer" | "http2.Http2ServerRequest" | "http2.Http2ServerResponse" | "http" | "http.globalAgent" | "http.createServer" | "http.get" | "http.request" | "http.Agent" | "http.Server" | "inspector" | "inspector.Session" | "inspector.Network.loadingFailed" | "inspector.Network.loadingFinished" | "inspector.Network.requestWillBeSent" | "inspector.Network.responseReceived" | "inspector.console" | "inspector.close" | "inspector.open" | "inspector.url" | "inspector.waitForDebugger" | "inspector/promises" | "inspector/promises.Session" | "inspector/promises.Network.loadingFailed" | "inspector/promises.Network.loadingFinished" | "inspector/promises.Network.requestWillBeSent" | "inspector/promises.Network.responseReceived" | "inspector/promises.console" | "inspector/promises.close" | "inspector/promises.open" | "inspector/promises.url" | "inspector/promises.waitForDebugger" | "module.builtinModules" | "module.constants.compileCacheStatus" | "module.createRequire" | "module.createRequireFromPath" | "module.enableCompileCache" | "module.findPackageJSON" | "module.flushCompileCache" | "module.getCompileCacheDir" | "module.isBuiltin" | "module.register" | "module.stripTypeScriptTypes" | "module.syncBuiltinESMExports" | "module.findSourceMap" | "module.SourceMap" | "module.Module.builtinModules" | "module.Module.createRequire" | "module.Module.createRequireFromPath" | "module.Module.enableCompileCache" | "module.Module.findPackageJSON" | "module.Module.flushCompileCache" | "module.Module.getCompileCacheDir" | "module.Module.isBuiltin" | "module.Module.register" | "module.Module.stripTypeScriptTypes" | "module.Module.syncBuiltinESMExports" | "module.Module.findSourceMap" | "module.Module.SourceMap" | "net" | "net.connect" | "net.createConnection" | "net.createServer" | "net.getDefaultAutoSelectFamily" | "net.setDefaultAutoSelectFamily" | "net.getDefaultAutoSelectFamilyAttemptTimeout" | "net.setDefaultAutoSelectFamilyAttemptTimeout" | "net.isIP" | "net.isIPv4" | "net.isIPv6" | "net.BlockList" | "net.SocketAddress" | "net.Server" | "net.Socket" | "os" | "os.EOL" | "os.constants" | "os.constants.priority" | "os.devNull" | "os.availableParallelism" | "os.arch" | "os.cpus" | "os.endianness" | "os.freemem" | "os.getPriority" | "os.homedir" | "os.hostname" | "os.loadavg" | "os.machine" | "os.networkInterfaces" | "os.platform" | "os.release" | "os.setPriority" | "os.tmpdir" | "os.totalmem" | "os.type" | "os.uptime" | "os.userInfo" | "os.version" | "path" | "path.posix" | "path.posix.delimiter" | "path.posix.sep" | "path.posix.basename" | "path.posix.dirname" | "path.posix.extname" | "path.posix.format" | "path.posix.matchesGlob" | "path.posix.isAbsolute" | "path.posix.join" | "path.posix.normalize" | "path.posix.parse" | "path.posix.relative" | "path.posix.resolve" | "path.posix.toNamespacedPath" | "path.win32" | "path.win32.delimiter" | "path.win32.sep" | "path.win32.basename" | "path.win32.dirname" | "path.win32.extname" | "path.win32.format" | "path.win32.matchesGlob" | "path.win32.isAbsolute" | "path.win32.join" | "path.win32.normalize" | "path.win32.parse" | "path.win32.relative" | "path.win32.resolve" | "path.win32.toNamespacedPath" | "path.delimiter" | "path.sep" | "path.basename" | "path.dirname" | "path.extname" | "path.format" | "path.matchesGlob" | "path.isAbsolute" | "path.join" | "path.normalize" | "path.parse" | "path.relative" | "path.resolve" | "path.toNamespacedPath" | "path/posix" | "path/posix.delimiter" | "path/posix.sep" | "path/posix.basename" | "path/posix.dirname" | "path/posix.extname" | "path/posix.format" | "path/posix.matchesGlob" | "path/posix.isAbsolute" | "path/posix.join" | "path/posix.normalize" | "path/posix.parse" | "path/posix.relative" | "path/posix.resolve" | "path/posix.toNamespacedPath" | "path/win32" | "path/win32.delimiter" | "path/win32.sep" | "path/win32.basename" | "path/win32.dirname" | "path/win32.extname" | "path/win32.format" | "path/win32.matchesGlob" | "path/win32.isAbsolute" | "path/win32.join" | "path/win32.normalize" | "path/win32.parse" | "path/win32.relative" | "path/win32.resolve" | "path/win32.toNamespacedPath" | "perf_hooks" | "perf_hooks.performance" | "perf_hooks.performance.clearMarks" | "perf_hooks.performance.clearMeasures" | "perf_hooks.performance.clearResourceTimings" | "perf_hooks.performance.eventLoopUtilization" | "perf_hooks.performance.getEntries" | "perf_hooks.performance.getEntriesByName" | "perf_hooks.performance.getEntriesByType" | "perf_hooks.performance.mark" | "perf_hooks.performance.markResourceTiming" | "perf_hooks.performance.measure" | "perf_hooks.performance.nodeTiming" | "perf_hooks.performance.nodeTiming.bootstrapComplete" | "perf_hooks.performance.nodeTiming.environment" | "perf_hooks.performance.nodeTiming.idleTime" | "perf_hooks.performance.nodeTiming.loopExit" | "perf_hooks.performance.nodeTiming.loopStart" | "perf_hooks.performance.nodeTiming.nodeStart" | "perf_hooks.performance.nodeTiming.uvMetricsInfo" | "perf_hooks.performance.nodeTiming.v8Start" | "perf_hooks.performance.now" | "perf_hooks.performance.onresourcetimingbufferfull" | "perf_hooks.performance.setResourceTimingBufferSize" | "perf_hooks.performance.timeOrigin" | "perf_hooks.performance.timerify" | "perf_hooks.performance.toJSON" | "perf_hooks.createHistogram" | "perf_hooks.monitorEventLoopDelay" | "perf_hooks.PerformanceEntry" | "perf_hooks.PerformanceMark" | "perf_hooks.PerformanceMeasure" | "perf_hooks.PerformanceNodeEntry" | "perf_hooks.PerformanceNodeTiming" | "perf_hooks.PerformanceResourceTiming" | "perf_hooks.PerformanceObserver" | "perf_hooks.PerformanceObserverEntryList" | "perf_hooks.Histogram" | "perf_hooks.IntervalHistogram" | "perf_hooks.RecordableHistogram" | "punycode" | "punycode.ucs2" | "punycode.version" | "punycode.decode" | "punycode.encode" | "punycode.toASCII" | "punycode.toUnicode" | "querystring" | "querystring.decode" | "querystring.encode" | "querystring.escape" | "querystring.parse" | "querystring.stringify" | "querystring.unescape" | "readline" | "readline.promises" | "readline.promises.createInterface" | "readline.promises.Interface" | "readline.promises.Readline" | "readline.clearLine" | "readline.clearScreenDown" | "readline.createInterface" | "readline.cursorTo" | "readline.moveCursor" | "readline.Interface" | "readline.emitKeypressEvents" | "readline.InterfaceConstructor" | "readline/promises" | "readline/promises.createInterface" | "readline/promises.Interface" | "readline/promises.Readline" | "repl" | "repl.start" | "repl.writer" | "repl.REPLServer()" | "repl.REPLServer" | "repl.REPL_MODE_MAGIC" | "repl.REPL_MODE_SLOPPY" | "repl.REPL_MODE_STRICT" | "repl.Recoverable()" | "repl.Recoverable" | "repl.builtinModules" | "sea" | "sea.isSea" | "sea.getAsset" | "sea.getAssetAsBlob" | "sea.getRawAsset" | "sea.sea.isSea" | "sea.sea.getAsset" | "sea.sea.getAssetAsBlob" | "sea.sea.getRawAsset" | "stream" | "stream.promises" | "stream.promises.pipeline" | "stream.promises.finished" | "stream.finished" | "stream.pipeline" | "stream.compose" | "stream.duplexPair" | "stream.Readable" | "stream.Readable.from" | "stream.Readable.isDisturbed" | "stream.Readable.fromWeb" | "stream.Readable.toWeb" | "stream.Writable" | "stream.Writable.fromWeb" | "stream.Writable.toWeb" | "stream.Duplex" | "stream.Duplex.from" | "stream.Duplex.fromWeb" | "stream.Duplex.toWeb" | "stream.Transform" | "stream.isErrored" | "stream.isReadable" | "stream.addAbortSignal" | "stream.getDefaultHighWaterMark" | "stream.setDefaultHighWaterMark" | "stream/promises.pipeline" | "stream/promises.finished" | "stream/web" | "stream/web.ReadableStream" | "stream/web.ReadableStream.from" | "stream/web.ReadableStreamDefaultReader" | "stream/web.ReadableStreamBYOBReader" | "stream/web.ReadableStreamDefaultController" | "stream/web.ReadableByteStreamController" | "stream/web.ReadableStreamBYOBRequest" | "stream/web.WritableStream" | "stream/web.WritableStreamDefaultWriter" | "stream/web.WritableStreamDefaultController" | "stream/web.TransformStream" | "stream/web.TransformStreamDefaultController" | "stream/web.ByteLengthQueuingStrategy" | "stream/web.CountQueuingStrategy" | "stream/web.TextEncoderStream" | "stream/web.TextDecoderStream" | "stream/web.CompressionStream" | "stream/web.DecompressionStream" | "stream/consumers" | "stream/consumers.arrayBuffer" | "stream/consumers.blob" | "stream/consumers.buffer" | "stream/consumers.json" | "stream/consumers.text" | "string_decoder" | "string_decoder.StringDecoder" | "test" | "test.after" | "test.afterEach" | "test.before" | "test.beforeEach" | "test.describe" | "test.describe.only" | "test.describe.skip" | "test.describe.todo" | "test.it" | "test.it.only" | "test.it.skip" | "test.it.todo" | "test.mock" | "test.mock.fn" | "test.mock.getter" | "test.mock.method" | "test.mock.module" | "test.mock.reset" | "test.mock.restoreAll" | "test.mock.setter" | "test.mock.timers" | "test.mock.timers.enable" | "test.mock.timers.reset" | "test.mock.timers.tick" | "test.only" | "test.run" | "test.snapshot" | "test.snapshot.setDefaultSnapshotSerializers" | "test.snapshot.setResolveSnapshotPath" | "test.skip" | "test.suite" | "test.test" | "test.test.only" | "test.test.skip" | "test.test.todo" | "test.todo" | "timers" | "timers.Immediate" | "timers.Timeout" | "timers.setImmediate" | "timers.clearImmediate" | "timers.setInterval" | "timers.clearInterval" | "timers.setTimeout" | "timers.clearTimeout" | "timers.promises" | "timers.promises.setTimeout" | "timers.promises.setImmediate" | "timers.promises.setInterval" | "timers.promises.scheduler.wait" | "timers.promises.scheduler.yield" | "timers/promises" | "timers/promises.setTimeout" | "timers/promises.setImmediate" | "timers/promises.setInterval" | "timers/promises.scheduler.wait" | "timers/promises.scheduler.yield" | "tls" | "tls.rootCertificates" | "tls.DEFAULT_ECDH_CURVE" | "tls.DEFAULT_MAX_VERSION" | "tls.DEFAULT_MIN_VERSION" | "tls.DEFAULT_CIPHERS" | "tls.checkServerIdentity" | "tls.connect" | "tls.createSecureContext" | "tls.createSecurePair" | "tls.createServer" | "tls.getCiphers" | "tls.SecureContext" | "tls.CryptoStream" | "tls.SecurePair" | "tls.Server" | "tls.TLSSocket" | "trace_events" | "trace_events.createTracing" | "trace_events.getEnabledCategories" | "tty" | "tty.isatty" | "tty.ReadStream" | "tty.WriteStream" | "url" | "url.domainToASCII" | "url.domainToUnicode" | "url.fileURLToPath" | "url.format" | "url.pathToFileURL" | "url.urlToHttpOptions" | "url.URL" | "url.URL.canParse" | "url.URL.createObjectURL" | "url.URL.revokeObjectURL" | "url.URLSearchParams" | "url.Url" | "util.promisify" | "util.promisify.custom" | "util.callbackify" | "util.debuglog" | "util.debug" | "util.deprecate" | "util.format" | "util.formatWithOptions" | "util.getCallSite" | "util.getCallSites" | "util.getSystemErrorName" | "util.getSystemErrorMap" | "util.getSystemErrorMessage" | "util.inherits" | "util.inspect" | "util.inspect.custom" | "util.inspect.defaultOptions" | "util.inspect.replDefaults" | "util.isDeepStrictEqual" | "util.parseArgs" | "util.parseEnv" | "util.stripVTControlCharacters" | "util.styleText" | "util.toUSVString" | "util.transferableAbortController" | "util.transferableAbortSignal" | "util.aborted" | "util.MIMEType" | "util.MIMEParams" | "util.TextDecoder" | "util.TextEncoder" | "util.types" | "util.types.isExternal" | "util.types.isDate" | "util.types.isArgumentsObject" | "util.types.isBigIntObject" | "util.types.isBooleanObject" | "util.types.isNumberObject" | "util.types.isStringObject" | "util.types.isSymbolObject" | "util.types.isNativeError" | "util.types.isRegExp" | "util.types.isAsyncFunction" | "util.types.isGeneratorFunction" | "util.types.isGeneratorObject" | "util.types.isPromise" | "util.types.isMap" | "util.types.isSet" | "util.types.isMapIterator" | "util.types.isSetIterator" | "util.types.isWeakMap" | "util.types.isWeakSet" | "util.types.isArrayBuffer" | "util.types.isDataView" | "util.types.isSharedArrayBuffer" | "util.types.isProxy" | "util.types.isModuleNamespaceObject" | "util.types.isAnyArrayBuffer" | "util.types.isBoxedPrimitive" | "util.types.isArrayBufferView" | "util.types.isTypedArray" | "util.types.isUint8Array" | "util.types.isUint8ClampedArray" | "util.types.isUint16Array" | "util.types.isUint32Array" | "util.types.isInt8Array" | "util.types.isInt16Array" | "util.types.isInt32Array" | "util.types.isFloat32Array" | "util.types.isFloat64Array" | "util.types.isBigInt64Array" | "util.types.isBigUint64Array" | "util.types.isKeyObject" | "util.types.isCryptoKey" | "util.types.isWebAssemblyCompiledModule" | "util._extend" | "util.isArray" | "util.isBoolean" | "util.isBuffer" | "util.isDate" | "util.isError" | "util.isFunction" | "util.isNull" | "util.isNullOrUndefined" | "util.isNumber" | "util.isObject" | "util.isPrimitive" | "util.isRegExp" | "util.isString" | "util.isSymbol" | "util.isUndefined" | "util.log" | "util" | "util/types" | "util/types.isExternal" | "util/types.isDate" | "util/types.isArgumentsObject" | "util/types.isBigIntObject" | "util/types.isBooleanObject" | "util/types.isNumberObject" | "util/types.isStringObject" | "util/types.isSymbolObject" | "util/types.isNativeError" | "util/types.isRegExp" | "util/types.isAsyncFunction" | "util/types.isGeneratorFunction" | "util/types.isGeneratorObject" | "util/types.isPromise" | "util/types.isMap" | "util/types.isSet" | "util/types.isMapIterator" | "util/types.isSetIterator" | "util/types.isWeakMap" | "util/types.isWeakSet" | "util/types.isArrayBuffer" | "util/types.isDataView" | "util/types.isSharedArrayBuffer" | "util/types.isProxy" | "util/types.isModuleNamespaceObject" | "util/types.isAnyArrayBuffer" | "util/types.isBoxedPrimitive" | "util/types.isArrayBufferView" | "util/types.isTypedArray" | "util/types.isUint8Array" | "util/types.isUint8ClampedArray" | "util/types.isUint16Array" | "util/types.isUint32Array" | "util/types.isInt8Array" | "util/types.isInt16Array" | "util/types.isInt32Array" | "util/types.isFloat32Array" | "util/types.isFloat64Array" | "util/types.isBigInt64Array" | "util/types.isBigUint64Array" | "util/types.isKeyObject" | "util/types.isCryptoKey" | "util/types.isWebAssemblyCompiledModule" | "v8" | "v8.serialize" | "v8.deserialize" | "v8.Serializer" | "v8.Deserializer" | "v8.DefaultSerializer" | "v8.DefaultDeserializer" | "v8.promiseHooks" | "v8.promiseHooks.onInit" | "v8.promiseHooks.onSettled" | "v8.promiseHooks.onBefore" | "v8.promiseHooks.onAfter" | "v8.promiseHooks.createHook" | "v8.startupSnapshot" | "v8.startupSnapshot.addSerializeCallback" | "v8.startupSnapshot.addDeserializeCallback" | "v8.startupSnapshot.setDeserializeMainFunction" | "v8.startupSnapshot.isBuildingSnapshot" | "v8.cachedDataVersionTag" | "v8.getHeapCodeStatistics" | "v8.getHeapSnapshot" | "v8.getHeapSpaceStatistics" | "v8.getHeapStatistics" | "v8.queryObjects" | "v8.setFlagsFromString" | "v8.stopCoverage" | "v8.takeCoverage" | "v8.writeHeapSnapshot" | "v8.setHeapSnapshotNearHeapLimit" | "v8.GCProfiler" | "vm.constants" | "vm.compileFunction" | "vm.createContext" | "vm.isContext" | "vm.measureMemory" | "vm.runInContext" | "vm.runInNewContext" | "vm.runInThisContext" | "vm.Script" | "vm.Module" | "vm.SourceTextModule" | "vm.SyntheticModule" | "vm" | "wasi.WASI" | "wasi" | "worker_threads" | "worker_threads.isMainThread" | "worker_threads.parentPort" | "worker_threads.resourceLimits" | "worker_threads.SHARE_ENV" | "worker_threads.threadId" | "worker_threads.workerData" | "worker_threads.getEnvironmentData" | "worker_threads.markAsUncloneable" | "worker_threads.markAsUntransferable" | "worker_threads.isMarkedAsUntransferable" | "worker_threads.moveMessagePortToContext" | "worker_threads.postMessageToThread" | "worker_threads.receiveMessageOnPort" | "worker_threads.setEnvironmentData" | "worker_threads.BroadcastChannel" | "worker_threads.MessageChannel" | "worker_threads.MessagePort" | "worker_threads.Worker" | "zlib.constants" | "zlib.crc32" | "zlib.createBrotliCompress" | "zlib.createBrotliDecompress" | "zlib.createDeflate" | "zlib.createDeflateRaw" | "zlib.createGunzip" | "zlib.createGzip" | "zlib.createInflate" | "zlib.createInflateRaw" | "zlib.createUnzip" | "zlib.brotliCompress" | "zlib.brotliCompressSync" | "zlib.brotliDecompress" | "zlib.brotliDecompressSync" | "zlib.deflate" | "zlib.deflateSync" | "zlib.deflateRaw" | "zlib.deflateRawSync" | "zlib.gunzip" | "zlib.gunzipSync" | "zlib.gzip" | "zlib.gzipSync" | "zlib.inflate" | "zlib.inflateSync" | "zlib.inflateRaw" | "zlib.inflateRawSync" | "zlib.unzip" | "zlib.unzipSync" | "zlib.BrotliCompress()" | "zlib.BrotliCompress" | "zlib.BrotliDecompress()" | "zlib.BrotliDecompress" | "zlib.Deflate()" | "zlib.Deflate" | "zlib.DeflateRaw()" | "zlib.DeflateRaw" | "zlib.Gunzip()" | "zlib.Gunzip" | "zlib.Gzip()" | "zlib.Gzip" | "zlib.Inflate()" | "zlib.Inflate" | "zlib.InflateRaw()" | "zlib.InflateRaw" | "zlib.Unzip()" | "zlib.Unzip" | "zlib")[];
9506
9578
  }
9507
9579
  ];
9508
9580
  type NodePreferGlobalBuffer = [] | [("always" | "never")];
@@ -9651,112 +9723,177 @@ type PaddingLineBetweenStatements = {
9651
9723
  prev: _PaddingLineBetweenStatementsStatementType;
9652
9724
  next: _PaddingLineBetweenStatementsStatementType;
9653
9725
  }[];
9654
- type PerfectionistSortArrayIncludes = [] | [
9726
+ type PerfectionistSortArrayIncludes = {
9727
+ specialCharacters?: ("remove" | "trim" | "keep");
9728
+ ignoreCase?: boolean;
9729
+ alphabet?: string;
9730
+ locales?: (string | string[]);
9731
+ order?: ("asc" | "desc");
9732
+ groupKind?: ("mixed" | "literals-first" | "spreads-first");
9733
+ customGroups?: ({
9734
+ groupName?: string;
9735
+ type?: ("alphabetical" | "line-length" | "natural" | "unsorted");
9736
+ order?: ("desc" | "asc");
9737
+ newlinesInside?: ("always" | "never");
9738
+ anyOf?: {
9739
+ selector?: ("literal" | "spread");
9740
+ elementNamePattern?: string;
9741
+ }[];
9742
+ } | {
9743
+ groupName?: string;
9744
+ type?: ("alphabetical" | "line-length" | "natural" | "unsorted");
9745
+ order?: ("desc" | "asc");
9746
+ newlinesInside?: ("always" | "never");
9747
+ selector?: ("literal" | "spread");
9748
+ elementNamePattern?: string;
9749
+ })[];
9750
+ useConfigurationIf?: {
9751
+ allNamesMatchPattern?: string;
9752
+ };
9753
+ type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted");
9754
+ partitionByComment?: (string[] | boolean | string | {
9755
+ block?: (string[] | boolean | string);
9756
+ line?: (string[] | boolean | string);
9757
+ [k: string]: unknown | undefined;
9758
+ });
9759
+ partitionByNewLine?: boolean;
9760
+ newlinesBetween?: ("ignore" | "always" | "never");
9761
+ groups?: (string | string[] | {
9762
+ newlinesBetween?: ("ignore" | "always" | "never");
9763
+ [k: string]: unknown | undefined;
9764
+ })[];
9765
+ }[];
9766
+ type PerfectionistSortClasses = [] | [
9655
9767
  {
9656
- partitionByComment?: (string[] | boolean | string);
9657
- groupKind?: ("mixed" | "literals-first" | "spreads-first");
9658
- partitionByNewLine?: boolean;
9659
9768
  specialCharacters?: ("remove" | "trim" | "keep");
9660
9769
  ignoreCase?: boolean;
9770
+ alphabet?: string;
9661
9771
  locales?: (string | string[]);
9662
9772
  order?: ("asc" | "desc");
9663
- type?: ("alphabetical" | "natural" | "line-length");
9664
- }
9665
- ];
9666
- type PerfectionistSortClasses = [] | [
9667
- {
9773
+ ignoreCallbackDependenciesPatterns?: string[];
9668
9774
  customGroups?: ({
9669
9775
  groupName?: string;
9670
9776
  type?: ("alphabetical" | "line-length" | "natural" | "unsorted");
9671
9777
  order?: ("desc" | "asc");
9778
+ newlinesInside?: ("always" | "never");
9672
9779
  anyOf?: {
9673
- modifiers?: ("async" | "protected" | "private" | "public" | "static" | "abstract" | "override" | "readonly" | "decorated" | "declare" | "optional")[];
9674
- elementValuePattern?: string;
9675
9780
  decoratorNamePattern?: string;
9781
+ modifiers?: ("async" | "protected" | "private" | "public" | "static" | "abstract" | "override" | "readonly" | "decorated" | "declare" | "optional")[];
9676
9782
  selector?: ("accessor-property" | "index-signature" | "constructor" | "static-block" | "get-method" | "set-method" | "function-property" | "property" | "method");
9783
+ elementValuePattern?: string;
9677
9784
  elementNamePattern?: string;
9678
9785
  }[];
9679
9786
  } | {
9680
9787
  groupName?: string;
9681
9788
  type?: ("alphabetical" | "line-length" | "natural" | "unsorted");
9682
9789
  order?: ("desc" | "asc");
9683
- modifiers?: ("async" | "protected" | "private" | "public" | "static" | "abstract" | "override" | "readonly" | "decorated" | "declare" | "optional")[];
9684
- elementValuePattern?: string;
9790
+ newlinesInside?: ("always" | "never");
9685
9791
  decoratorNamePattern?: string;
9792
+ modifiers?: ("async" | "protected" | "private" | "public" | "static" | "abstract" | "override" | "readonly" | "decorated" | "declare" | "optional")[];
9686
9793
  selector?: ("accessor-property" | "index-signature" | "constructor" | "static-block" | "get-method" | "set-method" | "function-property" | "property" | "method");
9794
+ elementValuePattern?: string;
9687
9795
  elementNamePattern?: string;
9688
9796
  })[];
9689
- ignoreCallbackDependenciesPatterns?: string[];
9690
- partitionByComment?: (string[] | boolean | string);
9797
+ partitionByComment?: (string[] | boolean | string | {
9798
+ block?: (string[] | boolean | string);
9799
+ line?: (string[] | boolean | string);
9800
+ [k: string]: unknown | undefined;
9801
+ });
9691
9802
  partitionByNewLine?: boolean;
9692
- specialCharacters?: ("remove" | "trim" | "keep");
9693
9803
  newlinesBetween?: ("ignore" | "always" | "never");
9694
- ignoreCase?: boolean;
9695
- locales?: (string | string[]);
9696
- groups?: (string | string[])[];
9697
- order?: ("asc" | "desc");
9698
- type?: ("alphabetical" | "natural" | "line-length");
9804
+ type?: ("alphabetical" | "natural" | "line-length" | "custom");
9805
+ groups?: (string | string[] | {
9806
+ newlinesBetween?: ("ignore" | "always" | "never");
9807
+ [k: string]: unknown | undefined;
9808
+ })[];
9699
9809
  }
9700
9810
  ];
9701
9811
  type PerfectionistSortDecorators = [] | [
9702
9812
  {
9703
- partitionByComment?: (string[] | boolean | string);
9813
+ specialCharacters?: ("remove" | "trim" | "keep");
9814
+ ignoreCase?: boolean;
9815
+ alphabet?: string;
9816
+ locales?: (string | string[]);
9817
+ order?: ("asc" | "desc");
9704
9818
  sortOnParameters?: boolean;
9705
9819
  sortOnProperties?: boolean;
9706
9820
  sortOnAccessors?: boolean;
9707
9821
  sortOnMethods?: boolean;
9708
9822
  sortOnClasses?: boolean;
9709
- specialCharacters?: ("remove" | "trim" | "keep");
9823
+ partitionByComment?: (string[] | boolean | string | {
9824
+ block?: (string[] | boolean | string);
9825
+ line?: (string[] | boolean | string);
9826
+ [k: string]: unknown | undefined;
9827
+ });
9710
9828
  customGroups?: {
9711
9829
  [k: string]: (string | string[]) | undefined;
9712
9830
  };
9713
- ignoreCase?: boolean;
9714
- locales?: (string | string[]);
9715
- groups?: (string | string[])[];
9716
- order?: ("asc" | "desc");
9717
- type?: ("alphabetical" | "natural" | "line-length");
9831
+ type?: ("alphabetical" | "natural" | "line-length" | "custom");
9832
+ groups?: (string | string[] | {
9833
+ newlinesBetween?: ("ignore" | "always" | "never");
9834
+ [k: string]: unknown | undefined;
9835
+ })[];
9718
9836
  }
9719
9837
  ];
9720
9838
  type PerfectionistSortEnums = [] | [
9721
9839
  {
9722
- partitionByComment?: (string[] | boolean | string);
9723
- forceNumericSort?: boolean;
9724
- sortByValue?: boolean;
9725
- partitionByNewLine?: boolean;
9726
9840
  specialCharacters?: ("remove" | "trim" | "keep");
9727
9841
  ignoreCase?: boolean;
9842
+ alphabet?: string;
9728
9843
  locales?: (string | string[]);
9729
9844
  order?: ("asc" | "desc");
9730
- type?: ("alphabetical" | "natural" | "line-length");
9845
+ forceNumericSort?: boolean;
9846
+ sortByValue?: boolean;
9847
+ partitionByComment?: (string[] | boolean | string | {
9848
+ block?: (string[] | boolean | string);
9849
+ line?: (string[] | boolean | string);
9850
+ [k: string]: unknown | undefined;
9851
+ });
9852
+ partitionByNewLine?: boolean;
9853
+ type?: ("alphabetical" | "natural" | "line-length" | "custom");
9731
9854
  }
9732
9855
  ];
9733
9856
  type PerfectionistSortExports = [] | [
9734
9857
  {
9735
- partitionByComment?: (string[] | boolean | string);
9736
- groupKind?: ("mixed" | "values-first" | "types-first");
9737
- partitionByNewLine?: boolean;
9738
9858
  specialCharacters?: ("remove" | "trim" | "keep");
9739
9859
  ignoreCase?: boolean;
9860
+ alphabet?: string;
9740
9861
  locales?: (string | string[]);
9741
9862
  order?: ("asc" | "desc");
9742
- type?: ("alphabetical" | "natural" | "line-length");
9863
+ groupKind?: ("mixed" | "values-first" | "types-first");
9864
+ partitionByComment?: (string[] | boolean | string | {
9865
+ block?: (string[] | boolean | string);
9866
+ line?: (string[] | boolean | string);
9867
+ [k: string]: unknown | undefined;
9868
+ });
9869
+ partitionByNewLine?: boolean;
9870
+ type?: ("alphabetical" | "natural" | "line-length" | "custom");
9743
9871
  }
9744
9872
  ];
9745
9873
  type PerfectionistSortHeritageClauses = [] | [
9746
9874
  {
9747
9875
  specialCharacters?: ("remove" | "trim" | "keep");
9748
- customGroups?: {
9749
- [k: string]: (string | string[]) | undefined;
9750
- };
9751
9876
  ignoreCase?: boolean;
9877
+ alphabet?: string;
9752
9878
  locales?: (string | string[]);
9753
- groups?: (string | string[])[];
9754
9879
  order?: ("asc" | "desc");
9755
- type?: ("alphabetical" | "natural" | "line-length");
9880
+ customGroups?: {
9881
+ [k: string]: (string | string[]) | undefined;
9882
+ };
9883
+ type?: ("alphabetical" | "natural" | "line-length" | "custom");
9884
+ groups?: (string | string[] | {
9885
+ newlinesBetween?: ("ignore" | "always" | "never");
9886
+ [k: string]: unknown | undefined;
9887
+ })[];
9756
9888
  }
9757
9889
  ];
9758
9890
  type PerfectionistSortImports = [] | [_PerfectionistSortImportsSortImports];
9759
9891
  type _PerfectionistSortImportsSortImports = (_PerfectionistSortImportsMaxLineLengthRequiresLineLengthType & {
9892
+ specialCharacters?: ("remove" | "trim" | "keep");
9893
+ ignoreCase?: boolean;
9894
+ alphabet?: string;
9895
+ locales?: (string | string[]);
9896
+ order?: ("asc" | "desc");
9760
9897
  customGroups?: {
9761
9898
  value?: {
9762
9899
  [k: string]: unknown | undefined;
@@ -9765,20 +9902,23 @@ type _PerfectionistSortImportsSortImports = (_PerfectionistSortImportsMaxLineLen
9765
9902
  [k: string]: unknown | undefined;
9766
9903
  };
9767
9904
  };
9768
- partitionByComment?: (string[] | boolean | string);
9769
9905
  internalPattern?: string[];
9770
9906
  maxLineLength?: number;
9771
9907
  sortSideEffects?: boolean;
9772
9908
  environment?: ("node" | "bun");
9773
9909
  tsconfigRootDir?: string;
9910
+ partitionByComment?: (string[] | boolean | string | {
9911
+ block?: (string[] | boolean | string);
9912
+ line?: (string[] | boolean | string);
9913
+ [k: string]: unknown | undefined;
9914
+ });
9774
9915
  partitionByNewLine?: boolean;
9775
- specialCharacters?: ("remove" | "trim" | "keep");
9776
9916
  newlinesBetween?: ("ignore" | "always" | "never");
9777
- ignoreCase?: boolean;
9778
- locales?: (string | string[]);
9779
- groups?: (string | string[])[];
9780
- order?: ("asc" | "desc");
9781
- type?: ("alphabetical" | "natural" | "line-length");
9917
+ type?: ("alphabetical" | "natural" | "line-length" | "custom");
9918
+ groups?: (string | string[] | {
9919
+ newlinesBetween?: ("ignore" | "always" | "never");
9920
+ [k: string]: unknown | undefined;
9921
+ })[];
9782
9922
  });
9783
9923
  type _PerfectionistSortImportsMaxLineLengthRequiresLineLengthType = ({
9784
9924
  [k: string]: unknown | undefined;
@@ -9787,72 +9927,145 @@ interface _PerfectionistSortImports_IsLineLength {
9787
9927
  type: "line-length";
9788
9928
  [k: string]: unknown | undefined;
9789
9929
  }
9790
- type PerfectionistSortInterfaces = [] | [
9930
+ type PerfectionistSortInterfaces = {
9931
+ specialCharacters?: ("remove" | "trim" | "keep");
9932
+ ignoreCase?: boolean;
9933
+ alphabet?: string;
9934
+ locales?: (string | string[]);
9935
+ order?: ("asc" | "desc");
9936
+ ignorePattern?: string[];
9937
+ useConfigurationIf?: {
9938
+ allNamesMatchPattern?: string;
9939
+ declarationMatchesPattern?: string;
9940
+ };
9941
+ customGroups?: ({
9942
+ [k: string]: (string | string[]) | undefined;
9943
+ } | ({
9944
+ groupName?: string;
9945
+ type?: ("alphabetical" | "line-length" | "natural" | "unsorted");
9946
+ order?: ("desc" | "asc");
9947
+ newlinesInside?: ("always" | "never");
9948
+ anyOf?: {
9949
+ modifiers?: ("optional" | "required" | "multiline")[];
9950
+ selector?: ("index-signature" | "member" | "method" | "multiline" | "property");
9951
+ elementNamePattern?: string;
9952
+ }[];
9953
+ } | {
9954
+ groupName?: string;
9955
+ type?: ("alphabetical" | "line-length" | "natural" | "unsorted");
9956
+ order?: ("desc" | "asc");
9957
+ newlinesInside?: ("always" | "never");
9958
+ modifiers?: ("optional" | "required" | "multiline")[];
9959
+ selector?: ("index-signature" | "member" | "method" | "multiline" | "property");
9960
+ elementNamePattern?: string;
9961
+ })[]);
9962
+ groupKind?: ("mixed" | "required-first" | "optional-first");
9963
+ type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted");
9964
+ partitionByComment?: (string[] | boolean | string | {
9965
+ block?: (string[] | boolean | string);
9966
+ line?: (string[] | boolean | string);
9967
+ [k: string]: unknown | undefined;
9968
+ });
9969
+ partitionByNewLine?: boolean;
9970
+ newlinesBetween?: ("ignore" | "always" | "never");
9971
+ groups?: (string | string[] | {
9972
+ newlinesBetween?: ("ignore" | "always" | "never");
9973
+ [k: string]: unknown | undefined;
9974
+ })[];
9975
+ }[];
9976
+ type PerfectionistSortIntersectionTypes = [] | [
9791
9977
  {
9792
- ignorePattern?: string[];
9793
- partitionByComment?: (string[] | boolean | string);
9794
- groupKind?: ("mixed" | "optional-first" | "required-first");
9795
- partitionByNewLine?: boolean;
9796
9978
  specialCharacters?: ("remove" | "trim" | "keep");
9797
- newlinesBetween?: ("ignore" | "always" | "never");
9798
- customGroups?: {
9799
- [k: string]: (string | string[]) | undefined;
9800
- };
9801
9979
  ignoreCase?: boolean;
9980
+ alphabet?: string;
9802
9981
  locales?: (string | string[]);
9803
- groups?: (string | string[])[];
9804
9982
  order?: ("asc" | "desc");
9805
- type?: ("alphabetical" | "natural" | "line-length");
9983
+ partitionByComment?: (string[] | boolean | string | {
9984
+ block?: (string[] | boolean | string);
9985
+ line?: (string[] | boolean | string);
9986
+ [k: string]: unknown | undefined;
9987
+ });
9988
+ partitionByNewLine?: boolean;
9989
+ newlinesBetween?: ("ignore" | "always" | "never");
9990
+ type?: ("alphabetical" | "natural" | "line-length" | "custom");
9991
+ groups?: (string | string[] | {
9992
+ newlinesBetween?: ("ignore" | "always" | "never");
9993
+ [k: string]: unknown | undefined;
9994
+ })[];
9806
9995
  }
9807
9996
  ];
9808
- type PerfectionistSortIntersectionTypes = [] | [
9997
+ type PerfectionistSortJsxProps = [] | [
9809
9998
  {
9810
- partitionByComment?: (string[] | boolean | string);
9811
- partitionByNewLine?: boolean;
9812
9999
  specialCharacters?: ("remove" | "trim" | "keep");
9813
- newlinesBetween?: ("ignore" | "always" | "never");
9814
10000
  ignoreCase?: boolean;
10001
+ alphabet?: string;
9815
10002
  locales?: (string | string[]);
9816
- groups?: (string | string[])[];
9817
10003
  order?: ("asc" | "desc");
9818
- type?: ("alphabetical" | "natural" | "line-length");
9819
- }
9820
- ];
9821
- type PerfectionistSortJsxProps = [] | [
9822
- {
9823
10004
  ignorePattern?: string[];
9824
- specialCharacters?: ("remove" | "trim" | "keep");
10005
+ partitionByNewLine?: boolean;
10006
+ newlinesBetween?: ("ignore" | "always" | "never");
9825
10007
  customGroups?: {
9826
10008
  [k: string]: (string | string[]) | undefined;
9827
10009
  };
9828
- ignoreCase?: boolean;
9829
- locales?: (string | string[]);
9830
- groups?: (string | string[])[];
9831
- order?: ("asc" | "desc");
9832
- type?: ("alphabetical" | "natural" | "line-length");
10010
+ type?: ("alphabetical" | "natural" | "line-length" | "custom");
10011
+ groups?: (string | string[] | {
10012
+ newlinesBetween?: ("ignore" | "always" | "never");
10013
+ [k: string]: unknown | undefined;
10014
+ })[];
9833
10015
  }
9834
10016
  ];
9835
- type PerfectionistSortMaps = [] | [
10017
+ type PerfectionistSortMaps = {
10018
+ specialCharacters?: ("remove" | "trim" | "keep");
10019
+ ignoreCase?: boolean;
10020
+ alphabet?: string;
10021
+ locales?: (string | string[]);
10022
+ order?: ("asc" | "desc");
10023
+ customGroups?: ({
10024
+ groupName?: string;
10025
+ type?: ("alphabetical" | "line-length" | "natural" | "unsorted");
10026
+ order?: ("desc" | "asc");
10027
+ newlinesInside?: ("always" | "never");
10028
+ anyOf?: {
10029
+ elementNamePattern?: string;
10030
+ }[];
10031
+ } | {
10032
+ groupName?: string;
10033
+ type?: ("alphabetical" | "line-length" | "natural" | "unsorted");
10034
+ order?: ("desc" | "asc");
10035
+ newlinesInside?: ("always" | "never");
10036
+ elementNamePattern?: string;
10037
+ })[];
10038
+ useConfigurationIf?: {
10039
+ allNamesMatchPattern?: string;
10040
+ };
10041
+ partitionByComment?: (string[] | boolean | string | {
10042
+ block?: (string[] | boolean | string);
10043
+ line?: (string[] | boolean | string);
10044
+ [k: string]: unknown | undefined;
10045
+ });
10046
+ partitionByNewLine?: boolean;
10047
+ newlinesBetween?: ("ignore" | "always" | "never");
10048
+ type?: ("alphabetical" | "natural" | "line-length" | "custom");
10049
+ groups?: (string | string[] | {
10050
+ newlinesBetween?: ("ignore" | "always" | "never");
10051
+ [k: string]: unknown | undefined;
10052
+ })[];
10053
+ }[];
10054
+ type PerfectionistSortModules = [] | [
9836
10055
  {
9837
- partitionByComment?: (string[] | boolean | string);
9838
- partitionByNewLine?: boolean;
9839
10056
  specialCharacters?: ("remove" | "trim" | "keep");
9840
10057
  ignoreCase?: boolean;
10058
+ alphabet?: string;
9841
10059
  locales?: (string | string[]);
9842
10060
  order?: ("asc" | "desc");
9843
- type?: ("alphabetical" | "natural" | "line-length");
9844
- }
9845
- ];
9846
- type PerfectionistSortModules = [] | [
9847
- {
9848
10061
  customGroups?: ({
9849
10062
  groupName?: string;
9850
10063
  type?: ("alphabetical" | "line-length" | "natural" | "unsorted");
9851
10064
  order?: ("desc" | "asc");
10065
+ newlinesInside?: ("always" | "never");
9852
10066
  anyOf?: {
9853
- modifiers?: ("async" | "declare" | "decorated" | "default" | "export")[];
9854
- elementValuePattern?: string;
9855
10067
  decoratorNamePattern?: string;
10068
+ modifiers?: ("async" | "declare" | "decorated" | "default" | "export")[];
9856
10069
  selector?: ("enum" | "function" | "interface" | "type" | "class");
9857
10070
  elementNamePattern?: string;
9858
10071
  }[];
@@ -9860,127 +10073,245 @@ type PerfectionistSortModules = [] | [
9860
10073
  groupName?: string;
9861
10074
  type?: ("alphabetical" | "line-length" | "natural" | "unsorted");
9862
10075
  order?: ("desc" | "asc");
9863
- modifiers?: ("async" | "declare" | "decorated" | "default" | "export")[];
9864
- elementValuePattern?: string;
10076
+ newlinesInside?: ("always" | "never");
9865
10077
  decoratorNamePattern?: string;
10078
+ modifiers?: ("async" | "declare" | "decorated" | "default" | "export")[];
9866
10079
  selector?: ("enum" | "function" | "interface" | "type" | "class");
9867
10080
  elementNamePattern?: string;
9868
10081
  })[];
9869
- partitionByComment?: (string[] | boolean | string);
10082
+ partitionByComment?: (string[] | boolean | string | {
10083
+ block?: (string[] | boolean | string);
10084
+ line?: (string[] | boolean | string);
10085
+ [k: string]: unknown | undefined;
10086
+ });
9870
10087
  partitionByNewLine?: boolean;
9871
- specialCharacters?: ("remove" | "trim" | "keep");
9872
10088
  newlinesBetween?: ("ignore" | "always" | "never");
9873
- ignoreCase?: boolean;
9874
- locales?: (string | string[]);
9875
- groups?: (string | string[])[];
9876
- order?: ("asc" | "desc");
9877
- type?: ("alphabetical" | "natural" | "line-length");
10089
+ type?: ("alphabetical" | "natural" | "line-length" | "custom");
10090
+ groups?: (string | string[] | {
10091
+ newlinesBetween?: ("ignore" | "always" | "never");
10092
+ [k: string]: unknown | undefined;
10093
+ })[];
9878
10094
  }
9879
10095
  ];
9880
10096
  type PerfectionistSortNamedExports = [] | [
9881
10097
  {
9882
- partitionByComment?: (string[] | boolean | string);
9883
- groupKind?: ("mixed" | "values-first" | "types-first");
9884
- partitionByNewLine?: boolean;
9885
10098
  specialCharacters?: ("remove" | "trim" | "keep");
9886
10099
  ignoreCase?: boolean;
10100
+ alphabet?: string;
9887
10101
  locales?: (string | string[]);
9888
10102
  order?: ("asc" | "desc");
9889
- type?: ("alphabetical" | "natural" | "line-length");
9890
- }
9891
- ];
9892
- type PerfectionistSortNamedImports = [] | [
9893
- {
9894
- partitionByComment?: (string[] | boolean | string);
9895
10103
  groupKind?: ("mixed" | "values-first" | "types-first");
9896
- ignoreAlias?: boolean;
9897
- partitionByNewLine?: boolean;
9898
- specialCharacters?: ("remove" | "trim" | "keep");
9899
- ignoreCase?: boolean;
9900
- locales?: (string | string[]);
9901
- order?: ("asc" | "desc");
9902
- type?: ("alphabetical" | "natural" | "line-length");
9903
- }
9904
- ];
9905
- type PerfectionistSortObjectTypes = [] | [
9906
- {
9907
- partitionByComment?: (string[] | boolean | string);
9908
- groupKind?: ("mixed" | "required-first" | "optional-first");
10104
+ partitionByComment?: (string[] | boolean | string | {
10105
+ block?: (string[] | boolean | string);
10106
+ line?: (string[] | boolean | string);
10107
+ [k: string]: unknown | undefined;
10108
+ });
9909
10109
  partitionByNewLine?: boolean;
9910
- specialCharacters?: ("remove" | "trim" | "keep");
9911
- newlinesBetween?: ("ignore" | "always" | "never");
9912
- customGroups?: {
9913
- [k: string]: (string | string[]) | undefined;
9914
- };
9915
- ignoreCase?: boolean;
9916
- locales?: (string | string[]);
9917
- groups?: (string | string[])[];
9918
- order?: ("asc" | "desc");
9919
- type?: ("alphabetical" | "natural" | "line-length");
10110
+ type?: ("alphabetical" | "natural" | "line-length" | "custom");
9920
10111
  }
9921
10112
  ];
9922
- type PerfectionistSortObjects = [] | [
10113
+ type PerfectionistSortNamedImports = [] | [
9923
10114
  {
9924
- ignorePattern?: string[];
9925
- partitionByComment?: (string[] | boolean | string);
9926
- destructureOnly?: boolean;
9927
- styledComponents?: boolean;
9928
- partitionByNewLine?: boolean;
9929
10115
  specialCharacters?: ("remove" | "trim" | "keep");
9930
- newlinesBetween?: ("ignore" | "always" | "never");
9931
- customGroups?: {
9932
- [k: string]: (string | string[]) | undefined;
9933
- };
9934
10116
  ignoreCase?: boolean;
10117
+ alphabet?: string;
9935
10118
  locales?: (string | string[]);
9936
- groups?: (string | string[])[];
9937
10119
  order?: ("asc" | "desc");
9938
- type?: ("alphabetical" | "natural" | "line-length");
9939
- }
9940
- ];
9941
- type PerfectionistSortSets = [] | [
9942
- {
9943
- partitionByComment?: (string[] | boolean | string);
9944
- groupKind?: ("mixed" | "literals-first" | "spreads-first");
10120
+ groupKind?: ("mixed" | "values-first" | "types-first");
10121
+ ignoreAlias?: boolean;
10122
+ partitionByComment?: (string[] | boolean | string | {
10123
+ block?: (string[] | boolean | string);
10124
+ line?: (string[] | boolean | string);
10125
+ [k: string]: unknown | undefined;
10126
+ });
9945
10127
  partitionByNewLine?: boolean;
9946
- specialCharacters?: ("remove" | "trim" | "keep");
9947
- ignoreCase?: boolean;
9948
- locales?: (string | string[]);
9949
- order?: ("asc" | "desc");
9950
- type?: ("alphabetical" | "natural" | "line-length");
10128
+ type?: ("alphabetical" | "natural" | "line-length" | "custom");
9951
10129
  }
9952
10130
  ];
10131
+ type PerfectionistSortObjectTypes = {
10132
+ specialCharacters?: ("remove" | "trim" | "keep");
10133
+ ignoreCase?: boolean;
10134
+ alphabet?: string;
10135
+ locales?: (string | string[]);
10136
+ order?: ("asc" | "desc");
10137
+ ignorePattern?: string[];
10138
+ useConfigurationIf?: {
10139
+ allNamesMatchPattern?: string;
10140
+ declarationMatchesPattern?: string;
10141
+ };
10142
+ customGroups?: ({
10143
+ [k: string]: (string | string[]) | undefined;
10144
+ } | ({
10145
+ groupName?: string;
10146
+ type?: ("alphabetical" | "line-length" | "natural" | "unsorted");
10147
+ order?: ("desc" | "asc");
10148
+ newlinesInside?: ("always" | "never");
10149
+ anyOf?: {
10150
+ modifiers?: ("optional" | "required" | "multiline")[];
10151
+ selector?: ("index-signature" | "member" | "method" | "multiline" | "property");
10152
+ elementNamePattern?: string;
10153
+ }[];
10154
+ } | {
10155
+ groupName?: string;
10156
+ type?: ("alphabetical" | "line-length" | "natural" | "unsorted");
10157
+ order?: ("desc" | "asc");
10158
+ newlinesInside?: ("always" | "never");
10159
+ modifiers?: ("optional" | "required" | "multiline")[];
10160
+ selector?: ("index-signature" | "member" | "method" | "multiline" | "property");
10161
+ elementNamePattern?: string;
10162
+ })[]);
10163
+ groupKind?: ("mixed" | "required-first" | "optional-first");
10164
+ type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted");
10165
+ partitionByComment?: (string[] | boolean | string | {
10166
+ block?: (string[] | boolean | string);
10167
+ line?: (string[] | boolean | string);
10168
+ [k: string]: unknown | undefined;
10169
+ });
10170
+ partitionByNewLine?: boolean;
10171
+ newlinesBetween?: ("ignore" | "always" | "never");
10172
+ groups?: (string | string[] | {
10173
+ newlinesBetween?: ("ignore" | "always" | "never");
10174
+ [k: string]: unknown | undefined;
10175
+ })[];
10176
+ }[];
10177
+ type PerfectionistSortObjects = {
10178
+ specialCharacters?: ("remove" | "trim" | "keep");
10179
+ ignoreCase?: boolean;
10180
+ alphabet?: string;
10181
+ locales?: (string | string[]);
10182
+ order?: ("asc" | "desc");
10183
+ destructuredObjects?: (boolean | {
10184
+ groups?: boolean;
10185
+ });
10186
+ ignorePattern?: string[];
10187
+ useConfigurationIf?: {
10188
+ allNamesMatchPattern?: string;
10189
+ callingFunctionNamePattern?: string;
10190
+ };
10191
+ customGroups?: ({
10192
+ [k: string]: (string | string[]) | undefined;
10193
+ } | ({
10194
+ groupName?: string;
10195
+ type?: ("alphabetical" | "line-length" | "natural" | "unsorted");
10196
+ order?: ("desc" | "asc");
10197
+ newlinesInside?: ("always" | "never");
10198
+ anyOf?: {
10199
+ modifiers?: ("optional" | "required" | "multiline")[];
10200
+ selector?: ("member" | "method" | "multiline" | "property");
10201
+ elementValuePattern?: string;
10202
+ elementNamePattern?: string;
10203
+ }[];
10204
+ } | {
10205
+ groupName?: string;
10206
+ type?: ("alphabetical" | "line-length" | "natural" | "unsorted");
10207
+ order?: ("desc" | "asc");
10208
+ newlinesInside?: ("always" | "never");
10209
+ modifiers?: ("optional" | "required" | "multiline")[];
10210
+ selector?: ("member" | "method" | "multiline" | "property");
10211
+ elementValuePattern?: string;
10212
+ elementNamePattern?: string;
10213
+ })[]);
10214
+ destructureOnly?: boolean;
10215
+ objectDeclarations?: boolean;
10216
+ styledComponents?: boolean;
10217
+ type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted");
10218
+ partitionByComment?: (string[] | boolean | string | {
10219
+ block?: (string[] | boolean | string);
10220
+ line?: (string[] | boolean | string);
10221
+ [k: string]: unknown | undefined;
10222
+ });
10223
+ partitionByNewLine?: boolean;
10224
+ newlinesBetween?: ("ignore" | "always" | "never");
10225
+ groups?: (string | string[] | {
10226
+ newlinesBetween?: ("ignore" | "always" | "never");
10227
+ [k: string]: unknown | undefined;
10228
+ })[];
10229
+ }[];
10230
+ type PerfectionistSortSets = {
10231
+ specialCharacters?: ("remove" | "trim" | "keep");
10232
+ ignoreCase?: boolean;
10233
+ alphabet?: string;
10234
+ locales?: (string | string[]);
10235
+ order?: ("asc" | "desc");
10236
+ groupKind?: ("mixed" | "literals-first" | "spreads-first");
10237
+ customGroups?: ({
10238
+ groupName?: string;
10239
+ type?: ("alphabetical" | "line-length" | "natural" | "unsorted");
10240
+ order?: ("desc" | "asc");
10241
+ newlinesInside?: ("always" | "never");
10242
+ anyOf?: {
10243
+ selector?: ("literal" | "spread");
10244
+ elementNamePattern?: string;
10245
+ }[];
10246
+ } | {
10247
+ groupName?: string;
10248
+ type?: ("alphabetical" | "line-length" | "natural" | "unsorted");
10249
+ order?: ("desc" | "asc");
10250
+ newlinesInside?: ("always" | "never");
10251
+ selector?: ("literal" | "spread");
10252
+ elementNamePattern?: string;
10253
+ })[];
10254
+ useConfigurationIf?: {
10255
+ allNamesMatchPattern?: string;
10256
+ };
10257
+ type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted");
10258
+ partitionByComment?: (string[] | boolean | string | {
10259
+ block?: (string[] | boolean | string);
10260
+ line?: (string[] | boolean | string);
10261
+ [k: string]: unknown | undefined;
10262
+ });
10263
+ partitionByNewLine?: boolean;
10264
+ newlinesBetween?: ("ignore" | "always" | "never");
10265
+ groups?: (string | string[] | {
10266
+ newlinesBetween?: ("ignore" | "always" | "never");
10267
+ [k: string]: unknown | undefined;
10268
+ })[];
10269
+ }[];
9953
10270
  type PerfectionistSortSwitchCase = [] | [
9954
10271
  {
9955
10272
  specialCharacters?: ("remove" | "trim" | "keep");
9956
10273
  ignoreCase?: boolean;
10274
+ alphabet?: string;
9957
10275
  locales?: (string | string[]);
9958
10276
  order?: ("asc" | "desc");
9959
- type?: ("alphabetical" | "natural" | "line-length");
10277
+ type?: ("alphabetical" | "natural" | "line-length" | "custom");
9960
10278
  }
9961
10279
  ];
9962
10280
  type PerfectionistSortUnionTypes = [] | [
9963
10281
  {
9964
- partitionByComment?: (string[] | boolean | string);
9965
- partitionByNewLine?: boolean;
9966
10282
  specialCharacters?: ("remove" | "trim" | "keep");
9967
- newlinesBetween?: ("ignore" | "always" | "never");
9968
10283
  ignoreCase?: boolean;
10284
+ alphabet?: string;
9969
10285
  locales?: (string | string[]);
9970
- groups?: (string | string[])[];
9971
10286
  order?: ("asc" | "desc");
9972
- type?: ("alphabetical" | "natural" | "line-length");
10287
+ partitionByComment?: (string[] | boolean | string | {
10288
+ block?: (string[] | boolean | string);
10289
+ line?: (string[] | boolean | string);
10290
+ [k: string]: unknown | undefined;
10291
+ });
10292
+ partitionByNewLine?: boolean;
10293
+ newlinesBetween?: ("ignore" | "always" | "never");
10294
+ type?: ("alphabetical" | "natural" | "line-length" | "custom");
10295
+ groups?: (string | string[] | {
10296
+ newlinesBetween?: ("ignore" | "always" | "never");
10297
+ [k: string]: unknown | undefined;
10298
+ })[];
9973
10299
  }
9974
10300
  ];
9975
10301
  type PerfectionistSortVariableDeclarations = [] | [
9976
10302
  {
9977
- partitionByComment?: (string[] | boolean | string);
9978
- partitionByNewLine?: boolean;
9979
10303
  specialCharacters?: ("remove" | "trim" | "keep");
9980
10304
  ignoreCase?: boolean;
10305
+ alphabet?: string;
9981
10306
  locales?: (string | string[]);
9982
10307
  order?: ("asc" | "desc");
9983
- type?: ("alphabetical" | "natural" | "line-length");
10308
+ partitionByComment?: (string[] | boolean | string | {
10309
+ block?: (string[] | boolean | string);
10310
+ line?: (string[] | boolean | string);
10311
+ [k: string]: unknown | undefined;
10312
+ });
10313
+ partitionByNewLine?: boolean;
10314
+ type?: ("alphabetical" | "natural" | "line-length" | "custom");
9984
10315
  }
9985
10316
  ];
9986
10317
  type PreferArrowCallback = [] | [
@@ -10259,6 +10590,7 @@ type SortKeys = [] | [("asc" | "desc")] | [
10259
10590
  natural?: boolean;
10260
10591
  minKeys?: number;
10261
10592
  allowLineSeparatedGroups?: boolean;
10593
+ ignoreComputedKeys?: boolean;
10262
10594
  }
10263
10595
  ];
10264
10596
  type SortVars = [] | [
@@ -10630,6 +10962,7 @@ type VueAttributeHyphenation = [] | [("always" | "never")] | [
10630
10962
  } & {
10631
10963
  [k: string]: unknown | undefined;
10632
10964
  })[];
10965
+ ignoreTags?: string[];
10633
10966
  }
10634
10967
  ];
10635
10968
  type VueAttributesOrder = [] | [
@@ -11377,6 +11710,11 @@ type VueNoDupeKeys = [] | [
11377
11710
  groups?: unknown[];
11378
11711
  }
11379
11712
  ];
11713
+ type VueNoDuplicateAttrInheritance = [] | [
11714
+ {
11715
+ checkMultiRootNodes?: boolean;
11716
+ }
11717
+ ];
11380
11718
  type VueNoDuplicateAttributes = [] | [
11381
11719
  {
11382
11720
  allowCoexistClass?: boolean;
@@ -11623,6 +11961,7 @@ type VueNoUselessVBind = [] | [
11623
11961
  type VueNoVTextVHtmlOnComponent = [] | [
11624
11962
  {
11625
11963
  allow?: string[];
11964
+ ignoreElementNamespaces?: boolean;
11626
11965
  }
11627
11966
  ];
11628
11967
  type VueObjectCurlyNewline = [] | [
@@ -11752,6 +12091,11 @@ type VueRequireToggleInsideTransition = [] | [
11752
12091
  additionalDirectives?: string[];
11753
12092
  }
11754
12093
  ];
12094
+ type VueRestrictedComponentNames = [] | [
12095
+ {
12096
+ allow?: string[];
12097
+ }
12098
+ ];
11755
12099
  type VueReturnInComputedProperty = [] | [
11756
12100
  {
11757
12101
  treatUndefinedAsUnspecified?: boolean;
@@ -11777,6 +12121,7 @@ type VueSinglelineHtmlElementContentNewline = [] | [
11777
12121
  externalIgnores?: string[];
11778
12122
  }
11779
12123
  ];
12124
+ type VueSlotNameCasing = [] | [("camelCase" | "kebab-case" | "singleword")];
11780
12125
  type VueSortKeys = [] | [("asc" | "desc")] | [
11781
12126
  ("asc" | "desc"),
11782
12127
  {
@@ -11826,6 +12171,7 @@ type VueVOnEventHyphenation = [] | [("always" | "never")] | [
11826
12171
  } & {
11827
12172
  [k: string]: unknown | undefined;
11828
12173
  })[];
12174
+ ignoreTags?: string[];
11829
12175
  }
11830
12176
  ];
11831
12177
  type VueVOnFunctionCall = [] | [("always" | "never")] | [
@@ -12114,44 +12460,53 @@ type Yoda = [] | [("always" | "never")] | [
12114
12460
 
12115
12461
  type Config = Linter.Config<Linter.RulesRecord & Rules>;
12116
12462
 
12463
+ declare const command: () => Config[];
12464
+
12465
+ declare const comments: () => Config[];
12466
+
12467
+ declare const ignores: () => Config[];
12468
+
12469
+ declare const imports: () => Config[];
12470
+
12117
12471
  declare const restrictedSyntaxJs: string[];
12118
- declare const javascript: Config[];
12472
+ declare const javascript: () => Config[];
12119
12473
 
12120
- declare const jsdoc: Linter.Config[];
12474
+ declare const jsdoc: () => Config[];
12121
12475
 
12122
- declare const jsonc: Linter.Config[];
12476
+ declare const jsonc: () => Config[];
12123
12477
 
12124
- declare const markdown: Linter.Config[];
12478
+ declare const markdown: () => Config[];
12125
12479
 
12126
- declare const node: Linter.Config[];
12480
+ declare const node: () => Config[];
12127
12481
 
12128
- declare const prettier: Linter.Config[];
12482
+ declare const prettier: () => Config[];
12129
12483
 
12130
- declare const regexp: Linter.Config[];
12484
+ declare const regexp: () => Config[];
12131
12485
 
12132
- declare const sortPackageJson: Linter.Config[];
12133
- declare const sortTsconfig: Linter.Config[];
12134
- declare const sortImports: Linter.Config[];
12486
+ declare const sortPackageJson: () => Config[];
12487
+ declare const sortTsconfig: () => Config[];
12488
+ declare const sortImports: () => Config[];
12135
12489
 
12136
- declare const specialCases: Config[];
12490
+ declare const specialCases: () => Config[];
12137
12491
 
12138
- declare const typescriptCore: Linter.Config[];
12139
- declare const typescript: Linter.Config[];
12492
+ declare const typescriptCore: Config[];
12493
+ declare const typescript: () => Config[];
12140
12494
 
12141
- declare const unicorn: Config[];
12495
+ declare const unicorn: () => Config[];
12142
12496
 
12143
- declare const unocss: Linter.Config[];
12497
+ declare const unocss: () => Promise<Config[]>;
12144
12498
 
12145
12499
  declare function getVueVersion(): number;
12146
- declare const reactivityTransform: Linter.Config[];
12147
- declare const vue: Linter.Config[];
12500
+ declare const reactivityTransform: () => Config[];
12501
+ declare const vue: () => Config[];
12148
12502
 
12149
- declare const yml: Linter.Config[];
12503
+ declare const yml: () => Config[];
12150
12504
 
12151
- declare const isInEditor: boolean;
12152
12505
  declare const hasTypeScript: boolean;
12153
12506
  declare const hasVue: boolean;
12154
12507
  declare const hasUnocss: boolean;
12508
+ declare function isInEditorEnv(): boolean;
12509
+ declare function isInGitHooksOrLintStaged(): boolean;
12155
12510
 
12156
12511
  declare const GLOB_SRC_EXT = "?([cm])[jt]s?(x)";
12157
12512
  declare const GLOB_SRC = "**/*.?([cm])[jt]s?(x)";
@@ -12176,36 +12531,14 @@ declare const GLOB_DIST: "**/dist";
12176
12531
  declare const GLOB_LOCKFILE: string[];
12177
12532
  declare const GLOB_EXCLUDE: string[];
12178
12533
 
12179
- type InteropDefault<T> = T extends {
12180
- default: infer U;
12181
- } ? U : T;
12182
- declare const configJs: any;
12183
- declare const pluginAntfu: typeof eslint_plugin_antfu.default;
12184
- declare const pluginSxzz: typeof eslint_plugin_sxzz.default;
12185
-
12186
- declare const pluginMarkdown: any;
12187
-
12188
- declare const pluginUnicorn: any;
12189
- declare const pluginVue: any;
12190
- declare const pluginNode: typeof eslint_plugin_n;
12191
- declare const pluginPerfectionist: any;
12192
- declare const pluginUnocss: typeof _unocss_eslint_plugin.default;
12193
- declare const pluginPrettier: any;
12194
- declare const configPrettier: any;
12195
- declare const pluginUnusedImports: any;
12196
- declare const pluginJsdoc: any;
12197
- declare const pluginIgnore: any;
12198
-
12199
- declare const configCommand: typeof _configCommand;
12200
-
12201
12534
  /** Ignore common files and include javascript support */
12202
- declare const presetJavaScript: Config[];
12535
+ declare const presetJavaScript: () => Config[];
12203
12536
  /** Includes basic json(c) file support and sorting json keys */
12204
- declare const presetJsonc: Config[];
12537
+ declare const presetJsonc: () => Config[];
12205
12538
  /** Includes markdown, yaml + `presetJsonc` support */
12206
- declare const presetLangsExtensions: Config[];
12539
+ declare const presetLangsExtensions: () => Config[];
12207
12540
  /** Includes `presetJavaScript` and typescript support */
12208
- declare const presetBasic: Config[];
12541
+ declare const presetBasic: () => Config[];
12209
12542
  /**
12210
12543
  * Includes
12211
12544
  * - `presetBasic` (JS+TS) support
@@ -12214,20 +12547,19 @@ declare const presetBasic: Config[];
12214
12547
  * - UnoCSS support (`uno.config.ts` is required)
12215
12548
  * - Prettier support
12216
12549
  */
12217
- declare const presetAll: Config[];
12218
-
12219
- /** `sxzz`'s preset. */
12550
+ declare const presetAll: () => Promise<Config[]>;
12551
+ /** `@sxzz`'s preset. */
12220
12552
  declare function sxzz(config?: Config | Config[], { command: enableCommand, markdown: enableMarkdown, prettier: enablePrettier, unocss: enableUnocss, vue: enableVue, }?: Partial<{
12221
- /** Vue support. Auto-enable. */
12553
+ /** Vue support. Auto-enable if detected. */
12222
12554
  vue: boolean;
12223
12555
  /** Prettier support. Default: true */
12224
12556
  prettier: boolean;
12225
12557
  /** markdown support. Default: true */
12226
12558
  markdown: boolean;
12227
- /** UnoCSS support. Auto-enable. */
12559
+ /** UnoCSS support. Auto-enable if detected. */
12228
12560
  unocss: boolean;
12229
12561
  sortKeys: boolean;
12230
12562
  command: boolean;
12231
- }>): Config[];
12563
+ }>): Promise<Config[]>;
12232
12564
 
12233
- export { type Config, GLOB_ALL_SRC, GLOB_CSS, GLOB_DIST, GLOB_EXCLUDE, GLOB_HTML, GLOB_JS, GLOB_JSON, GLOB_JSON5, GLOB_JSONC, GLOB_JSX, GLOB_LESS, GLOB_LOCKFILE, GLOB_MARKDOWN, GLOB_NODE_MODULES, GLOB_SCSS, GLOB_SRC, GLOB_SRC_EXT, GLOB_STYLE, GLOB_TS, GLOB_TSX, GLOB_VUE, GLOB_YAML, type InteropDefault, type Rules, presetAll as all, presetBasic as basic, command, comments, configCommand, configJs, configPrettier, getVueVersion, hasTypeScript, hasUnocss, hasVue, ignores, imports, isInEditor, javascript, jsdoc, jsonc, markdown, node, pluginAntfu, pluginIgnore, pluginJsdoc, pluginMarkdown, pluginNode, pluginPerfectionist, pluginPrettier, pluginSxzz, pluginUnicorn, pluginUnocss, pluginUnusedImports, pluginVue, presetAll, presetBasic, presetJavaScript, presetJsonc, presetLangsExtensions, prettier, reactivityTransform, regexp, restrictedSyntaxJs, sortImports, sortPackageJson, sortTsconfig, specialCases, sxzz, typescript, typescriptCore, unicorn, unocss, vue, yml };
12565
+ export { type Config, GLOB_ALL_SRC, GLOB_CSS, GLOB_DIST, GLOB_EXCLUDE, GLOB_HTML, GLOB_JS, GLOB_JSON, GLOB_JSON5, GLOB_JSONC, GLOB_JSX, GLOB_LESS, GLOB_LOCKFILE, GLOB_MARKDOWN, GLOB_NODE_MODULES, GLOB_SCSS, GLOB_SRC, GLOB_SRC_EXT, GLOB_STYLE, GLOB_TS, GLOB_TSX, GLOB_VUE, GLOB_YAML, type Rules, command, comments, getVueVersion, hasTypeScript, hasUnocss, hasVue, ignores, imports, isInEditorEnv, isInGitHooksOrLintStaged, javascript, jsdoc, jsonc, markdown, node, presetAll, presetBasic, presetJavaScript, presetJsonc, presetLangsExtensions, prettier, reactivityTransform, regexp, restrictedSyntaxJs, sortImports, sortPackageJson, sortTsconfig, specialCases, sxzz, typescript, typescriptCore, unicorn, unocss, vue, yml };