persona-community-5/.pnpm-store/v3/files/fb/604c890395bffb2de247372fe125888da263f03efe4d5138c3945472ebc6bb7b7bc012021727ba42f324e31dc60591b3b994000ede030371353aeb91d03ee8
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
525 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 ClassScope extends ScopeBase<ScopeType.class, TSESTree.ClassDeclaration | TSESTree.ClassExpression, Scope> {
constructor(scopeManager: ScopeManager, upperScope: ClassScope['upper'], block: ClassScope['block']);
}
export { ClassScope };
//# sourceMappingURL=ClassScope.d.ts.map