interface StartTag {
    attrs: Attribute[];
    selfClosing: boolean;
    sourceCodeLocation?: null | Location;
    tagName: string;
}

Hierarchy

Properties

attrs: Attribute[]

List of attributes

selfClosing: boolean

Indicates if the tag is self-closing

sourceCodeLocation?: null | Location

Source code location info. Available if location info is enabled via SAXParserOptions.

tagName: string

Tag name

Generated using TypeDoc