interface TagInfo {
    hasChildren: boolean;
    tagAttributes: Record<string, string>;
    tagKey: string;
    tagValue: null | string;
}

Properties

hasChildren: boolean
tagAttributes: Record<string, string>
tagKey: string
tagValue: null | string