persona-community-5/.pnpm-store/v3/files/7b/42b341442a04ad269b433f0a414f43e165ff8eebd788a60323b5df959a6bbc816a3d5526cd17feef5de1af6e770b8ebcb02c1e0cd5c5577757496ac4bb867c
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
646 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 FunctionExpressionNameScope extends ScopeBase<ScopeType.functionExpressionName, TSESTree.FunctionExpression, Scope> {
readonly functionExpressionScope: true;
constructor(scopeManager: ScopeManager, upperScope: FunctionExpressionNameScope['upper'], block: FunctionExpressionNameScope['block']);
}
export { FunctionExpressionNameScope };
//# sourceMappingURL=FunctionExpressionNameScope.d.ts.map