persona-community-5/.pnpm-store/v3/files/db/eced7f519b332201caa89dfecc5768fa37a27376802b0f52c310b90152e36bd21bba3b83a0a13785cd63936a77f4ddd9f9c6ab7eefa8ae1fbbca2f3f64497f
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

11 lines
542 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 WithScope extends ScopeBase<ScopeType.with, TSESTree.WithStatement, Scope> {
constructor(scopeManager: ScopeManager, upperScope: WithScope['upper'], block: WithScope['block']);
close(scopeManager: ScopeManager): Scope | null;
}
export { WithScope };
//# sourceMappingURL=WithScope.d.ts.map