mirror of
https://github.com/Sevichecc/Urara-Blog.git
synced 2025-05-06 03:29:14 +08:00
10 lines
No EOL
517 B
Text
10 lines
No EOL
517 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 TypeScope extends ScopeBase<ScopeType.type, TSESTree.TSInterfaceDeclaration | TSESTree.TSTypeAliasDeclaration, Scope> {
|
|
constructor(scopeManager: ScopeManager, upperScope: TypeScope['upper'], block: TypeScope['block']);
|
|
}
|
|
export { TypeScope };
|
|
//# sourceMappingURL=TypeScope.d.ts.map |