UNPKG

@rightcapital/phpdoc-parser

Version:

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

10 lines (9 loc) 366 B
import type { GenericTypeNode } from '../type/generic-type-node'; import { PhpDocTagValueNode } from './php-doc-tag-value-node'; export declare class ExtendsTagValueNode extends PhpDocTagValueNode { type: GenericTypeNode; description: string; constructor(type: GenericTypeNode, description?: string); toString(): string; getNodeType(): string; }