We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fe0d731 commit b4421b6Copy full SHA for b4421b6
index.d.ts
@@ -1,14 +1,14 @@
1
import type { Linter, Rule } from "eslint";
2
3
-type JestDomPluginConfig = 'all' | 'recommended';
+type JestDomPluginConfigName = 'all' | 'recommended';
4
5
declare const plugin: {
6
meta: {
7
name: string;
8
version: string;
9
};
10
- configs: Record<JestDomPluginConfig, Linter.LegacyConfig> &
11
- Record<`flat/${JestDomPluginConfig}`, Linter.FlatConfig>;
+ configs: Record<JestDomPluginConfigName, Linter.LegacyConfig> &
+ Record<`flat/${JestDomPluginConfigName}`, Linter.FlatConfig>;
12
rules: Record<string, Rule.RuleModule>;
13
14
0 commit comments