Files
memecoin-botV2/.pnpm-store/v10/files/10/d4a1e150ce9cd925411306ae9dd76eb983eea20037993be9f0a65eff24faa07b7ba3bac0756729fcaa1b5a87e5bb5fe9df4a4a2e74aa3e31022f4a150292b3

17 lines
544 B
Plaintext

import { TSESLint } from '@typescript-eslint/utils';
export interface Config {
allowNamedExports?: boolean;
classes?: boolean;
enums?: boolean;
functions?: boolean;
ignoreTypeReferences?: boolean;
typedefs?: boolean;
variables?: boolean;
}
export type Options = ['nofunc' | Config];
export type MessageIds = 'noUseBeforeDefine';
declare const _default: TSESLint.RuleModule<"noUseBeforeDefine", Options, import("../../rules").ESLintPluginDocs, TSESLint.RuleListener> & {
name: string;
};
export default _default;