Urara-Blog/node_modules/.pnpm-store/v3/files/0b/1a8ee2f9b8090a860ea21956837915c570c7b9e51072de385415121be2e4ae9866de783b99dc309ab740f867b47ba36d53ee0b66e68d6ec4c9479829063b98
2022-08-14 01:14:53 +08:00

10 lines
No EOL
478 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 CatchScope extends ScopeBase<ScopeType.catch, TSESTree.CatchClause, Scope> {
constructor(scopeManager: ScopeManager, upperScope: CatchScope['upper'], block: CatchScope['block']);
}
export { CatchScope };
//# sourceMappingURL=CatchScope.d.ts.map