declare module "eslint-plugin-editorconfig" { //declare module "src/@types/index" { /** @file - Type declarations for "eslint-plugin-editorconfig" */ import { type TSESLint } from "@typescript-eslint/utils"; import type { Linter } from "eslint"; interface EditorConfigPlugin extends TSESLint.Plugin { configs: { noconflict: { rules: Readonly }; all: { rules: Readonly }; }; } const plugin: EditorConfigPlugin; export default plugin; }