UNPKG

@rightcapital/phpdoc-parser

Version:

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

13 lines (12 loc) 479 B
import type { TypeNode } from '../type/type-node'; import { PhpDocTagValueNode } from './php-doc-tag-value-node'; export declare class ParamTagValueNode extends PhpDocTagValueNode { type: TypeNode; isVariadic: boolean; parameterName: string; description: string; isReference: boolean; constructor(type: TypeNode, isVariadic: boolean, parameterName: string, description: string, isReference?: boolean); toString(): string; getNodeType(): string; }