Files
memecoin-botV2/.pnpm-store/v10/files/3d/f98f440b66401b18fd104f413c342f2886bb9ccb68af371534e11befe8d0a7b19bf68d78f46c8f37bc093293da8b737bc14107f830fc06c966113d050f1017

9 lines
469 B
Plaintext

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.Identifier> {
readonly isTypeDefinition = false;
readonly isVariableDefinition = true;
constructor(name: TSESTree.Identifier, node: CatchClauseDefinition['node']);
}