Skip to content

Commit d4b4b84

Browse files
authored
feat: Add types (#41)
1 parent cd690db commit d4b4b84

File tree

2 files changed

+10
-0
lines changed

2 files changed

+10
-0
lines changed

index.d.ts

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
import type { Rule } from 'eslint';
2+
3+
declare const plugin: {
4+
rules: {
5+
[key: string]: Rule.RuleModule;
6+
};
7+
};
8+
9+
export = plugin;

package.json

+1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
"version": "v1.5.5",
44
"description": "",
55
"main": "index.js",
6+
"types": "index.d.ts",
67
"repository": {
78
"type": "git",
89
"url": "https://github.com/MelvinVermeer/eslint-plugin-no-relative-import-paths"

0 commit comments

Comments
 (0)