UNPKG

@rightcapital/phpdoc-parser

Version:

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

14 lines (13 loc) 516 B
import type { TypeNode } from '../type/type-node'; import { PhpDocTagValueNode } from './php-doc-tag-value-node'; export declare class AssertTagPropertyValueNode extends PhpDocTagValueNode { type: TypeNode; parameter: string; property: string; isNegated: boolean; description: string; isEquality: boolean; constructor(type: TypeNode, parameter: string, property: string, isNegated: boolean, description: string, isEquality?: boolean); toString(): string; getNodeType(): string; }