UNPKG

@rightcapital/php-parser

Version:

TypeScript types for PHP Parser JSON representation

9 lines (8 loc) 364 B
import type { NodeAbstract } from '../node'; import type { NodeTypeInheritingFromFullyQualifiedExprVariable } from "../types"; export interface ClosureUse extends Omit<NodeAbstract, 'nodeType'> { nodeType: 'ClosureUse'; ["var"]: NodeTypeInheritingFromFullyQualifiedExprVariable; ["byRef"]: boolean; } export type FullyQualifiedClosureUse = ClosureUse;