UNPKG

@rightcapital/phpdoc-parser

Version:

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

9 lines (8 loc) 299 B
import type { ObjectShapeItemNode } from './object-shape-item-node'; import { TypeNode } from './type-node'; export declare class ObjectShapeNode extends TypeNode { items: ObjectShapeItemNode[]; constructor(items: ObjectShapeItemNode[]); toString(): string; getNodeType(): string; }