UNPKG

@rightcapital/phpdoc-parser

Version:

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

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