Interface TwingBaseTextNode<Type>

interface TwingBaseTextNode<Type> {
    attributes: TwingBaseTextNodeAttributes;
    children: TwingBaseNodeChildren;
    column: number;
    line: number;
    tag: null | string;
    type: Type;
}

Type Parameters

  • Type extends string

Hierarchy (view full)

Properties

column: number
line: number
tag: null | string
type: Type