Urara-Blog/node_modules/.pnpm-store/v3/files/a7/8ea3d1a5d0d69e4b1df36fb167f703081d21e48c1ebb81294f98525b824ba17eff018e5f1e514ebf8b732760846c7972b598e6b10c77aba412ca14110d13ef
2022-08-14 01:14:53 +08:00

10 lines
No EOL
480 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 ModuleScope extends ScopeBase<ScopeType.module, TSESTree.Program, Scope> {
constructor(scopeManager: ScopeManager, upperScope: ModuleScope['upper'], block: ModuleScope['block']);
}
export { ModuleScope };
//# sourceMappingURL=ModuleScope.d.ts.map