diff --git a/lib/flat.d.ts b/lib/flat.d.ts new file mode 100644 index 0000000..82ae420 --- /dev/null +++ b/lib/flat.d.ts @@ -0,0 +1,12 @@ +import type { ESLint, Linter } from 'eslint' + +declare const plugin: { + meta: { name: string, version: string } + configs: { + globals: Linter.Config + recommended: Linter.Config + } + rules: NonNullable +} + +export = plugin