Skip to content

Commit 68e0f13

Browse files
authoredJun 23, 2024··
Add TypeScript types (#2382)
1 parent 8d28b6e commit 68e0f13

File tree

2 files changed

+14
-0
lines changed

2 files changed

+14
-0
lines changed
 

‎index.d.ts

+12
Original file line numberDiff line numberDiff line change
@@ -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

+2
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
"url": "https://sindresorhus.com"
1212
},
1313
"main": "index.js",
14+
"types": "index.d.ts",
1415
"sideEffects": false,
1516
"engines": {
1617
"node": ">=18.18"
@@ -35,6 +36,7 @@
3536
},
3637
"files": [
3738
"index.js",
39+
"index.d.ts",
3840
"rules",
3941
"configs"
4042
],

0 commit comments

Comments
 (0)
Please sign in to comment.