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