mirror of
https://github.com/Sevichecc/Urara-Blog.git
synced 2025-05-08 04:09:12 +08:00
10 lines
No EOL
504 B
Text
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 |