Documentation
    Preparing search index...

    Interface TwingBaseBinaryNode<Type>

    interface TwingBaseBinaryNode<Type extends string> {
        attributes: Attributes;
        children: { left: TwingBaseExpressionNode; right: TwingBaseExpressionNode };
        column: number;
        line: number;
        tag: null | string;
        type: Type;
    }

    Type Parameters

    • Type extends string

    Hierarchy (View Summary)

    Index

    Properties

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