eslint-rules/dist/index.d.ts
2023-08-09 01:38:04 -04:00

8 lines
352 B
TypeScript

import type { ESLintConfig } from 'eslint-define-config';
declare module 'eslint-define-config/src/rules/react/no-unknown-property.d.ts' {
interface NoUnknownPropertyOption {
extends: ('next' | 'emotion')[];
}
}
export declare function extendConfig({ plugins, settings, rules, extends: _extends, ...rest }: ESLintConfig): ESLintConfig;