Files
memecoin-botV2/.pnpm-store/v10/files/c2/d9bdead5f04ca36a5bbc6b9c739d6706f0af8d5fa3b7bd1d0ef372763f5eb379120ea1348faa007eb50155fc434d297e34f5eed4df3342ee67e27d7bba4760

28 lines
1.8 KiB
Plaintext

interface RuleMap {
'arrow-parens': typeof import('eslint/lib/rules/arrow-parens');
'consistent-return': typeof import('eslint/lib/rules/consistent-return');
'dot-notation': typeof import('eslint/lib/rules/dot-notation');
'init-declarations': typeof import('eslint/lib/rules/init-declarations');
'max-params': typeof import('eslint/lib/rules/max-params');
'no-dupe-args': typeof import('eslint/lib/rules/no-dupe-args');
'no-dupe-class-members': typeof import('eslint/lib/rules/no-dupe-class-members');
'no-empty-function': typeof import('eslint/lib/rules/no-empty-function');
'no-implicit-globals': typeof import('eslint/lib/rules/no-implicit-globals');
'no-invalid-this': typeof import('eslint/lib/rules/no-invalid-this');
'no-loop-func': typeof import('eslint/lib/rules/no-loop-func');
'no-loss-of-precision': typeof import('eslint/lib/rules/no-loss-of-precision');
'no-magic-numbers': typeof import('eslint/lib/rules/no-magic-numbers');
'no-restricted-globals': typeof import('eslint/lib/rules/no-restricted-globals');
'no-restricted-imports': typeof import('eslint/lib/rules/no-restricted-imports');
'no-undef': typeof import('eslint/lib/rules/no-undef');
'no-unused-expressions': typeof import('eslint/lib/rules/no-unused-expressions');
'no-useless-constructor': typeof import('eslint/lib/rules/no-useless-constructor');
'prefer-const': typeof import('eslint/lib/rules/prefer-const');
'prefer-destructuring': typeof import('eslint/lib/rules/prefer-destructuring');
strict: typeof import('eslint/lib/rules/strict');
}
type RuleId = keyof RuleMap;
export declare const getESLintCoreRule: <R extends RuleId>(ruleId: R) => RuleMap[R];
export declare function maybeGetESLintCoreRule<R extends RuleId>(ruleId: R): RuleMap[R] | null;
export {};