Files
memecoin-botV2/.pnpm-store/v10/files/2e/281ed2d3b19083252be8741a9851ab21e87604d9df42995db4d801230950afc83340da2e6910fc12981e832415ff5251ca89e689be4ebe12c845f3435bdd8f

9 lines
478 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';
export declare class TypeScope extends ScopeBase<ScopeType.type, TSESTree.TSInterfaceDeclaration | TSESTree.TSTypeAliasDeclaration, Scope> {
constructor(scopeManager: ScopeManager, upperScope: TypeScope['upper'], block: TypeScope['block']);
}