@rightcapital/phpdoc-parser
Version:
TypeScript version of PHPDoc parser with support for intersection types and generics
10 lines (9 loc) • 336 B
TypeScript
import type { TypeNode } from '../type/type-node';
import { PhpDocTagValueNode } from './php-doc-tag-value-node';
export declare class ThrowsTagValueNode extends PhpDocTagValueNode {
type: TypeNode;
description: string;
constructor(type: TypeNode, description?: string);
toString(): string;
getNodeType(): string;
}