mirror of
https://github.com/Sevichecc/Urara-Blog.git
synced 2025-05-07 11:09:13 +08:00
10 lines
No EOL
543 B
Text
10 lines
No EOL
543 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 ClassStaticBlockScope extends ScopeBase<ScopeType.classStaticBlock, TSESTree.Expression, Scope> {
|
|
constructor(scopeManager: ScopeManager, upperScope: ClassStaticBlockScope['upper'], block: ClassStaticBlockScope['block']);
|
|
}
|
|
export { ClassStaticBlockScope };
|
|
//# sourceMappingURL=ClassStaticBlockScope.d.ts.map |