Interface TwingBaseNode<Type, Attributes, Children>

interface TwingBaseNode<Type, Attributes, Children> {
    attributes: Attributes;
    children: Children;
    column: number;
    line: number;
    tag: null | string;
    type: Type;
}

Type Parameters

Hierarchy (view full)

Properties

attributes: Attributes
children: Children
column: number
line: number
tag: null | string
type: Type