astro-ghostcms/.pnpm-store/v3/files/7b/42b341442a04ad269b433f0a414...

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