UNPKG

@rightcapital/php-parser

Version:

TypeScript types for PHP Parser JSON representation

7 lines (6 loc) 266 B
import type { NodeAbstract } from '../node'; export interface InterpolatedStringPart extends Omit<NodeAbstract, 'nodeType'> { nodeType: 'InterpolatedStringPart'; ["value"]: string; } export type FullyQualifiedInterpolatedStringPart = InterpolatedStringPart;