Files
memecoin-botV2/.pnpm-store/v10/files/cd/33d81c3bb527cdf88d63c82b902071e485492a705c00193a462ad2cdd77e95e9dbcf4cc205ac9d6cdf38b0d479e88f437c8c2cd6f4ffbf72757763811c72ef

17 lines
634 B
Plaintext

import type { TSESLint } from '@typescript-eslint/utils';
export type MessageIds = 'noEnumShadow' | 'noShadow' | 'noShadowGlobal';
export type Options = [
{
allow?: string[];
builtinGlobals?: boolean;
hoist?: 'all' | 'functions' | 'functions-and-types' | 'never' | 'types';
ignoreFunctionTypeParameterNameValueShadow?: boolean;
ignoreOnInitialization?: boolean;
ignoreTypeValueShadow?: boolean;
}
];
declare const _default: TSESLint.RuleModule<MessageIds, Options, import("../../rules").ESLintPluginDocs, TSESLint.RuleListener> & {
name: string;
};
export default _default;