UNPKG

@rightcapital/phpdoc-parser

Version:

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

8 lines (7 loc) 220 B
import { ConstExprNode } from './const-expr-node'; export declare class ConstExprStringNode extends ConstExprNode { value: string; constructor(value: string); toString(): string; getNodeType(): string; }