Urara-Blog/node_modules/.pnpm-store/v3/files/85/c2f01485c77c7dcf04133650cd8345f76209ae6b0c65b32bfa37a5798b347ec16f255bbcf77d6e385adfe8805fffc0dc32bca017c2df62332d5f99e1672d1e
2022-08-14 01:14:53 +08:00

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