9 lines
469 B
Plaintext
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']);
|
|
}
|