Files
memecoin-botV2/.pnpm-store/v10/files/f5/cc53fb16c81c940b5f133bfe7b19e80ebedbd06c1ae061d10dae66c1a786a35a5a21d3e199da88053773b3176935ff4a3db99797d682ca8b2ba0e9b5818c9a

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