UNPKG

@rightcapital/php-parser

Version:

TypeScript types for PHP Parser JSON representation

8 lines (7 loc) 354 B
import type { NodeAbstract } from '../node'; import type { NodeTypeInheritingFromFullyQualifiedAttribute } from "../types"; export interface AttributeGroup extends Omit<NodeAbstract, 'nodeType'> { nodeType: 'AttributeGroup'; ["attrs"]: NodeTypeInheritingFromFullyQualifiedAttribute[]; } export type FullyQualifiedAttributeGroup = AttributeGroup;