Files
memecoin-botV2/.pnpm-store/v10/files/f9/f3833f3f8ab25ebc527ff53096b68906683e4fe972762b8a60f398ac742a3dee187c39a0ea6325b0a0943d56e87d9b3416d1e2021f043d31d6dceb24089096

9 lines
458 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 MappedTypeScope extends ScopeBase<ScopeType.mappedType, TSESTree.TSMappedType, Scope> {
constructor(scopeManager: ScopeManager, upperScope: MappedTypeScope['upper'], block: MappedTypeScope['block']);
}