Files
memecoin-botV2/.pnpm-store/v10/files/8e/209ac5b867d833689053c0dc87adaa7989af476e3e159b8eb03a642997ea05265531955cc4dda9a36338d3a675f77e80e44535293511372ccaafdb7b182df8

9 lines
440 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 BlockScope extends ScopeBase<ScopeType.block, TSESTree.BlockStatement, Scope> {
constructor(scopeManager: ScopeManager, upperScope: BlockScope['upper'], block: BlockScope['block']);
}