Files
memecoin-botV2/.pnpm-store/v10/files/37/76c402446367df62a0a56a2441fb117fe51cd3f1437f82d687c9c433d599a252850077e5916301a7a70f7c9da7d4a8f641b1e882afcf4d47eb870f70352123

9 lines
437 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 CatchScope extends ScopeBase<ScopeType.catch, TSESTree.CatchClause, Scope> {
constructor(scopeManager: ScopeManager, upperScope: CatchScope['upper'], block: CatchScope['block']);
}