persona-community-5/.pnpm-store/v3/files/26/97c9f7cb7bdfd854c9e1200eed353674772d9a44f46f1787a5f5c87af8f6a3826d0c5118bba64067cb36a402b0a4cc89661dc3878feaeac6a9d1979eed7618
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 ConditionalTypeScope extends ScopeBase<ScopeType.conditionalType, TSESTree.TSConditionalType, Scope> {
constructor(scopeManager: ScopeManager, upperScope: ConditionalTypeScope['upper'], block: ConditionalTypeScope['block']);
}
export { ConditionalTypeScope };
//# sourceMappingURL=ConditionalTypeScope.d.ts.map