mirror of
https://github.com/Sevichecc/Urara-Blog.git
synced 2025-05-02 23:09:30 +08:00
10 lines
No EOL
481 B
Text
10 lines
No EOL
481 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 BlockScope extends ScopeBase<ScopeType.block, TSESTree.BlockStatement, Scope> {
|
|
constructor(scopeManager: ScopeManager, upperScope: BlockScope['upper'], block: BlockScope['block']);
|
|
}
|
|
export { BlockScope };
|
|
//# sourceMappingURL=BlockScope.d.ts.map |