UNPKG

@typescript-eslint/scope-manager

Version:
9 lines 522 B
import type { TSESTree } from '@typescript-eslint/types'; import { DefinitionBase } from './DefinitionBase'; import { DefinitionType } from './DefinitionType'; export declare class CatchClauseDefinition extends DefinitionBase<DefinitionType.CatchClause, TSESTree.CatchClause, null, TSESTree.BindingName> { readonly isTypeDefinition = false; readonly isVariableDefinition = true; constructor(name: TSESTree.BindingName, node: CatchClauseDefinition['node']); } //# sourceMappingURL=CatchClauseDefinition.d.ts.map