Files
memecoin-botV2/.pnpm-store/v10/files/15/9e2d9a77bad51b8e5df2aace3a60de44088753622602c03398db8d65a87251d82bf1abd04a450ed496a70378c1576d4308a011d214415aa10ee22d4b6d84bd

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