@rightcapital/php-parser
Version:
TypeScript types for PHP Parser JSON representation
9 lines (8 loc) • 364 B
TypeScript
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;