Urara-Blog/node_modules/.pnpm-store/v3/files/57/e0269906b7ba13135c5520b480cb3fb7e6094eb483ec1e8566c08de8396b20619ead80a519aa56cef9a044cb2e2e3e2961aa4e2d5f2e1e27b878f4fee70b41
2022-08-14 01:14:53 +08:00

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