Interface TagToken

interface TagToken {
    ackSelfClosing: boolean;
    attrs: Attribute[];
    location: null | LocationWithAttributes;
    selfClosing: boolean;
    tagID: TAG_ID;
    tagName: string;
    type: START_TAG | END_TAG;
}

Hierarchy

  • TokenBase
    • TagToken

Properties

ackSelfClosing: boolean
attrs: Attribute[]
location: null | LocationWithAttributes
selfClosing: boolean
tagID: TAG_ID

Used to cache the ID of the tag name.

tagName: string

Generated using TypeDoc