persona-community-5/.pnpm-store/v3/files/de/979400e217da0808132c0442fda17cb7b56594f860fd41c56e812229a1c7d6b4f20812bbbd4f3292bfc615965ca21c1af20511fa7c40835fcc5a21c42bd09c
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
505 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 TSEnumScope extends ScopeBase<ScopeType.tsEnum, TSESTree.TSEnumDeclaration, Scope> {
constructor(scopeManager: ScopeManager, upperScope: TSEnumScope['upper'], block: TSEnumScope['block']);
}
export { TSEnumScope };
//# sourceMappingURL=TSEnumScope.d.ts.map