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