persona-community-5/.pnpm-store/v3/files/4f/6f49d8b4d6d6555df8d69b0f62eba33ff2d5fd723b48f78d42805e42a2a66b0ccdb69c825003c9dba702092c4950696946c8be0a44b85ed7f6325dab10bd3e
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
495 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 ModuleScope extends ScopeBase<ScopeType.module, TSESTree.Program, Scope> {
constructor(scopeManager: ScopeManager, upperScope: ModuleScope['upper'], block: ModuleScope['block']);
}
export { ModuleScope };
//# sourceMappingURL=ModuleScope.d.ts.map