Files
memecoin-botV2/.pnpm-store/v10/files/3f/a350dfe5c48642e0247efe7dfc742ebcaa1b41ada00a3dc50e190262185f3c30015e1bef3eef87715fb78b1bc906f579230d4f16b3a082c738c19ccefbf68a

17 lines
860 B
Plaintext

import type { TSESTree } from '@typescript-eslint/utils';
import type { InferMessageIdsTypeFromRule, InferOptionsTypeFromRule } from '../util';
declare const baseRule: import("@typescript-eslint/utils/ts-eslint").RuleModule<"suggestComment" | "unexpected", [{
allow?: string[];
}], unknown, {
FunctionDeclaration(node: TSESTree.FunctionDeclaration): void;
FunctionExpression(node: TSESTree.FunctionExpression): void;
}>;
export type Options = InferOptionsTypeFromRule<typeof baseRule>;
export type MessageIds = InferMessageIdsTypeFromRule<typeof baseRule>;
declare const _default: import("@typescript-eslint/utils/ts-eslint").RuleModule<"suggestComment" | "unexpected", [{
allow?: string[];
}], import("../../rules").ESLintPluginDocs, import("@typescript-eslint/utils/ts-eslint").RuleListener> & {
name: string;
};
export default _default;