Urara-Blog/node_modules/.pnpm-store/v3/files/3e/5d546a8f0bd534d3d07751407c851fbe559c5eee4956ba7a20e7391db983cb9e2d41e97490451d3001ee5a9844cce3015dfbb5043627bbcc7797add0e3120e
2022-08-14 01:14:53 +08:00

10 lines
No EOL
504 B
Text

import { TSESTree } from '@typescript-eslint/types';
import { Scope } from './Scope';
import { ScopeBase } from './ScopeBase';
import { ScopeType } from './ScopeType';
import { ScopeManager } from '../ScopeManager';
declare class TSModuleScope extends ScopeBase<ScopeType.tsModule, TSESTree.TSModuleDeclaration, Scope> {
constructor(scopeManager: ScopeManager, upperScope: TSModuleScope['upper'], block: TSModuleScope['block']);
}
export { TSModuleScope };
//# sourceMappingURL=TSModuleScope.d.ts.map