UNPKG

@rightcapital/phpdoc-parser

Version:

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

9 lines (8 loc) 295 B
import { ConstExprNode } from './const-expr-node'; export declare class ConstExprArrayItemNode extends ConstExprNode { key: ConstExprNode | null; value: ConstExprNode; constructor(key: ConstExprNode | null, value: ConstExprNode); toString(): string; getNodeType(): string; }