This commit is contained in:
Alex
2023-10-04 17:52:39 -04:00
parent 8a07010f29
commit 91bbcba2e8
11 changed files with 53 additions and 24 deletions

15
dist/index.d.ts vendored
View File

@ -2,16 +2,9 @@
import { ESLintConfig } from 'eslint-define-config';
export declare const error = 'error';
export declare const warn = 'warn';
export declare const off = 'off';
export declare function extendConfig({
plugins,
settings,
rules,
extends: _extends,
overrides,
...rest
}?: ESLintConfig): ESLintConfig;
export declare const error = "error";
export declare const warn = "warn";
export declare const off = "off";
export declare function extendConfig({ plugins, settings, rules, extends: _extends, overrides, ...rest }?: ESLintConfig): ESLintConfig;
export {};