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