UNPKG

@rightcapital/php-parser

Version:

TypeScript types for PHP Parser JSON representation

9 lines (6 loc) 160 B
import type { IAttributes } from './attributes'; export interface INode { nodeType?: string; attributes: IAttributes; } export type NodeAbstract = INode;