13 lines
437 B
Plaintext
13 lines
437 B
Plaintext
import type { TSESLint } from '@typescript-eslint/utils';
|
|
export type MessageIds = 'redeclared' | 'redeclaredAsBuiltin' | 'redeclaredBySyntax';
|
|
export type Options = [
|
|
{
|
|
builtinGlobals?: boolean;
|
|
ignoreDeclarationMerge?: boolean;
|
|
}
|
|
];
|
|
declare const _default: TSESLint.RuleModule<MessageIds, Options, import("../../rules").ESLintPluginDocs, TSESLint.RuleListener> & {
|
|
name: string;
|
|
};
|
|
export default _default;
|