Files
memecoin-botV2/.pnpm-store/v10/files/17/c8350acc4fc8871497b725e19154083afaf05d04eb706a9538ce9cc441ed0060b9133bd0a01f29e617ce3caed51ad9e91e09c28a64521f8533fc4d5186f64e

10 lines
556 B
Plaintext

import type { TSESTree } from '@typescript-eslint/types';
import type { ScopeManager } from '../ScopeManager';
import type { Scope } from './Scope';
import { ScopeBase } from './ScopeBase';
import { ScopeType } from './ScopeType';
export declare class FunctionExpressionNameScope extends ScopeBase<ScopeType.functionExpressionName, TSESTree.FunctionExpression, Scope> {
readonly functionExpressionScope: true;
constructor(scopeManager: ScopeManager, upperScope: FunctionExpressionNameScope['upper'], block: FunctionExpressionNameScope['block']);
}