skeldjs
    Preparing search index...

    Interface TagParsePart

    interface TagParsePart {
        type: Tag;
        value:
            | null
            | {
                attributes: TagPartAttribute[];
                children: ParsePart[];
                tagName: TMPTag;
            };
    }

    Hierarchy (View Summary)

    Index

    Properties

    Properties

    type: Tag
    value:
        | null
        | {
            attributes: TagPartAttribute[];
            children: ParsePart[];
            tagName: TMPTag;
        }