Urara-Blog/node_modules/.pnpm-store/v3/files/97/4815ef3f1a626446de6b67489c3d821d7303d30425b4a6a846b63a05f52099cff4bd883ddaddd337ab1b59d88a99e54df2d53f99ce00a778aa2e822801f765
2022-08-14 01:14:53 +08:00

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