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