UNPKG

@rightcapital/phpdoc-parser

Version:

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

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