astro-ghostcms/.pnpm-store/v3/files/26/97c9f7cb7bdfd854c9e1200eed3...

10 lines
559 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 ConditionalTypeScope extends ScopeBase<ScopeType.conditionalType, TSESTree.TSConditionalType, Scope> {
constructor(scopeManager: ScopeManager, upperScope: ConditionalTypeScope['upper'], block: ConditionalTypeScope['block']);
}
export { ConditionalTypeScope };
//# sourceMappingURL=ConditionalTypeScope.d.ts.map