persona-community-5/.pnpm-store/v3/files/88/04f542e56784d493a7fa12ee2f5b25b9481b79e1c6e51131c0482e57bed6f76dafc9e53510f57979a51d33b36722a2c9797a35c7120cee8b51615e8d463191
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
524 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 MappedTypeScope extends ScopeBase<ScopeType.mappedType, TSESTree.TSMappedType, Scope> {
constructor(scopeManager: ScopeManager, upperScope: MappedTypeScope['upper'], block: MappedTypeScope['block']);
}
export { MappedTypeScope };
//# sourceMappingURL=MappedTypeScope.d.ts.map