Files
memecoin-botV2/.pnpm-store/v10/files/e9/dafbbccf07464cdd7c867ae327d90c4882ab89e4d1b4087e42f05dc530dc1c3ad7bf33cbadba558f4a4972b343df3c653573c414ecf15b724ffe38e4e62108

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