@rightcapital/phpdoc-parser
Version:
TypeScript version of PHPDoc parser with support for intersection types and generics
11 lines (10 loc) • 394 B
TypeScript
import { ParserException } from '../../parser/parser-exception';
import { TypeNode } from './type-node';
export declare class InvalidTypeNode extends TypeNode {
exception: ParserException;
exceptionArgs: ConstructorParameters<typeof ParserException>;
constructor(exception: ParserException);
getException(): ParserException;
toString(): string;
getNodeType(): string;
}