Files
memecoin-botV2/.pnpm-store/v10/files/d3/3bcefb0ff32139e4ec633980e1aba209004213b6fc6a25762cdd182712878ee0156cdc82b7d20ebb9f3826241996b54b8a1724cc60af30be2949883d971f81

7 lines
637 B
Plaintext

import type { ParserServicesWithTypeInformation, TSESTree } from '@typescript-eslint/utils';
import type { ReportDescriptor, RuleContext } from '@typescript-eslint/utils/ts-eslint';
import type { PreferOptionalChainMessageIds, PreferOptionalChainOptions } from './PreferOptionalChainOptions';
export declare function checkNullishAndReport(context: RuleContext<PreferOptionalChainMessageIds, [
PreferOptionalChainOptions
]>, parserServices: ParserServicesWithTypeInformation, { requireNullish }: PreferOptionalChainOptions, maybeNullishNodes: TSESTree.Expression[], descriptor: ReportDescriptor<PreferOptionalChainMessageIds>): void;