UNPKG

@rightcapital/php-parser

Version:

TypeScript types for PHP Parser JSON representation

6 lines (5 loc) 224 B
import type { Identifier } from './identifier'; export interface VarLikeIdentifier extends Omit<Identifier, 'nodeType'> { nodeType: 'VarLikeIdentifier'; } export type FullyQualifiedVarLikeIdentifier = VarLikeIdentifier;