Documentation
    Preparing search index...

    Interface TwingBaseIncludeNode<Type, Attributes, Children>

    interface TwingBaseIncludeNode<
        Type extends string,
        Attributes extends
            TwingBaseIncludeNodeAttributes = TwingBaseIncludeNodeAttributes,
        Children extends
            TwingBaseIncludeNodeChildren = TwingBaseIncludeNodeChildren,
    > {
        attributes: Attributes;
        children: Children;
        column: number;
        line: number;
        tag: null
        | string;
        type: Type;
    }

    Type Parameters

    Hierarchy (View Summary)

    Index

    Properties

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