Urara-Blog/node_modules/.pnpm-store/v3/files/ed/8f689d5f72c48f6b45c2d0596753cf99376177afb9a7b5939a0f01d499ee60597ea140f2098fc4659ac6d205ad89fb997a4f295c46f5b2acd17db4758a65ee
2022-08-14 01:14:53 +08:00

10 lines
No EOL
509 B
Text

import { TSESTree } from '@typescript-eslint/types';
import { Scope } from './Scope';
import { ScopeBase } from './ScopeBase';
import { ScopeType } from './ScopeType';
import { ScopeManager } from '../ScopeManager';
declare class MappedTypeScope extends ScopeBase<ScopeType.mappedType, TSESTree.TSMappedType, Scope> {
constructor(scopeManager: ScopeManager, upperScope: MappedTypeScope['upper'], block: MappedTypeScope['block']);
}
export { MappedTypeScope };
//# sourceMappingURL=MappedTypeScope.d.ts.map