UNPKG

@rightcapital/php-parser

Version:

TypeScript types for PHP Parser JSON representation

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