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