Files
memecoin-botV2/.pnpm-store/v10/files/4e/cb1cfd0551d7b0fe0add5a22faef02f996e89365c8f33601bbbf4a92154e80d76d490a1e9cf6c0fb6e6bfac3da1abe45bf4e113df09c1d985c20e2c7a61fc3

12 lines
821 B
Plaintext

import type { TSESTree } from '@typescript-eslint/types';
import type { Reference } from '../referencer/Reference';
import type { ScopeManager } from '../ScopeManager';
import type { Variable } from '../variable';
import type { Scope } from './Scope';
import { ScopeBase } from './ScopeBase';
import { ScopeType } from './ScopeType';
export declare class FunctionScope extends ScopeBase<ScopeType.function, TSESTree.ArrowFunctionExpression | TSESTree.FunctionDeclaration | TSESTree.FunctionExpression | TSESTree.Program | TSESTree.TSDeclareFunction | TSESTree.TSEmptyBodyFunctionExpression, Scope> {
constructor(scopeManager: ScopeManager, upperScope: FunctionScope['upper'], block: FunctionScope['block'], isMethodDefinition: boolean);
protected isValidResolution(ref: Reference, variable: Variable): boolean;
}