11 lines
273 B
TypeScript
11 lines
273 B
TypeScript
import { ESLint, Linter } from "eslint";
|
|
|
|
//#region src/index.d.ts
|
|
declare const plugin: ESLint.Plugin;
|
|
declare const configs: {
|
|
recommended: Linter.Config[];
|
|
json: Linter.Config[];
|
|
yaml: Linter.Config[];
|
|
};
|
|
//#endregion
|
|
export { configs, plugin as default, plugin }; |