mirror of
https://github.com/Sevichecc/Urara-Blog.git
synced 2025-05-03 03:19:31 +08:00
10 lines
No EOL
544 B
Text
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 |