Urara-Blog/node_modules/.pnpm-store/v3/files/a2/75a9f854e4c15fc92f1adc59fd0954a652811eb4df66b517f4548099be2bacce0952a7f258b2250db790808fdeccfb07ef1e6b8a32f30cf5c707aeb9d8daf2
2022-08-14 01:14:53 +08:00

10 lines
No EOL
544 B
Text

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