We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
sindresorhus
fisker
Learn more about funding links in repositories.
Report abuse
1 parent 8d28b6e commit 68e0f13Copy full SHA for 68e0f13
index.d.ts
@@ -0,0 +1,12 @@
1
+import type {ESLint, Linter} from 'eslint';
2
+
3
+declare const eslintPluginUnicorn: ESLint.Plugin & {
4
+ configs: {
5
+ recommended: Linter.Config;
6
+ all: Linter.Config;
7
+ 'flat/all': Linter.FlatConfig;
8
+ 'flat/recommended': Linter.FlatConfig;
9
+ };
10
+};
11
12
+export = eslintPluginUnicorn;
package.json
@@ -11,6 +11,7 @@
"url": "https://sindresorhus.com"
},
13
"main": "index.js",
14
+ "types": "index.d.ts",
15
"sideEffects": false,
16
"engines": {
17
"node": ">=18.18"
@@ -35,6 +36,7 @@
35
36
37
"files": [
38
"index.js",
39
+ "index.d.ts",
40
"rules",
41
"configs"
42
],
0 commit comments