From 3b0f4913e93692f2d751f3a19e7e36dde3c5d54a Mon Sep 17 00:00:00 2001 From: Logicer Date: Sat, 13 Apr 2024 19:28:37 +1000 Subject: [PATCH] Add types (#164) --- src/index.d.ts | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 src/index.d.ts diff --git a/src/index.d.ts b/src/index.d.ts new file mode 100644 index 0000000..9c1946b --- /dev/null +++ b/src/index.d.ts @@ -0,0 +1,5 @@ +import type { ESLint } from "eslint"; + +declare const eslintPluginSimpleImportSort: ESLint.Plugin; + +export = eslintPluginSimpleImportSort;