persona-community-5/.pnpm-store/v3/files/af/9ee240dee3b8e4d26242b01768cc4a7b5d42141ff2e5b37e22b402ca0f1f84187791340558306c2d82ea979266bdfb7ce929925ae2356635f54c76d0e5624a
rdev-worker a1d0d1bf1c
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
build: /implement-feature community-ui --requirements 'Build the React commu...
2026-02-24 08:22:30 +00:00

10 lines
559 B
Plaintext

import type { TSESTree } from '@typescript-eslint/types';
import type { ScopeManager } from '../ScopeManager';
import type { Scope } from './Scope';
import { ScopeBase } from './ScopeBase';
import { ScopeType } from './ScopeType';
declare class ClassStaticBlockScope extends ScopeBase<ScopeType.classStaticBlock, TSESTree.StaticBlock, Scope> {
constructor(scopeManager: ScopeManager, upperScope: ClassStaticBlockScope['upper'], block: ClassStaticBlockScope['block']);
}
export { ClassStaticBlockScope };
//# sourceMappingURL=ClassStaticBlockScope.d.ts.map