mirror of
https://github.com/Sevichecc/Urara-Blog.git
synced 2025-05-03 03:09:29 +08:00
10 lines
No EOL
509 B
Text
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 |