UNPKG

@rightcapital/phpdoc-parser

Version:

TypeScript version of PHPDoc parser with support for intersection types and generics

11 lines (10 loc) 385 B
import type { TypeNode } from '../type/type-node'; import { PhpDocTagValueNode } from './php-doc-tag-value-node'; export declare class PropertyTagValueNode extends PhpDocTagValueNode { type: TypeNode; propertyName: string; description: string; constructor(type: TypeNode, propertyName: string, description: string); toString(): string; getNodeType(): string; }