Files
memecoin-botV2/.pnpm-store/v10/files/7b/b79e2e3e56befd722889dd07c1a788728d2ac81166b4b1a23d509456348873519553f1668ce1c96b3e881ea071cdf4ed4396118e4ed0222c42474f583db17f

9 lines
481 B
Plaintext

import type { TSESTree } from '@typescript-eslint/types';
import type { ScopeManager } from '../ScopeManager';
import type { Scope } from './Scope';
import { ScopeBase } from './ScopeBase';
import { ScopeType } from './ScopeType';
export declare class ClassStaticBlockScope extends ScopeBase<ScopeType.classStaticBlock, TSESTree.StaticBlock, Scope> {
constructor(scopeManager: ScopeManager, upperScope: ClassStaticBlockScope['upper'], block: ClassStaticBlockScope['block']);
}