@rightcapital/phpdoc-parser
Version:
TypeScript version of PHPDoc parser with support for intersection types and generics
11 lines (10 loc) • 397 B
TypeScript
import { ParserException } from '../../parser/parser-exception';
import { PhpDocTagValueNode } from './php-doc-tag-value-node';
export declare class InvalidTagValueNode extends PhpDocTagValueNode {
value: string;
private exceptionArgs;
constructor(value: string, exception: ParserException);
get(name: string): ParserException;
toString(): string;
getNodeType(): string;
}