9.0 Released! → Native ESM runtimes 🚀, Vite support ⚡️, multi-window apps and more...
Read Announcement

Defined in: xml/index.ts

Specifies the type of parser event.

Constructors

Constructor

ts
new ParserEventType(): ParserEventType;

Returns

ParserEventType

Properties

CDATA

ts
static CDATA: string;

Defined in: xml/index.ts

Specifies the CDATA event type.


Comment

ts
static Comment: string;

Defined in: xml/index.ts

Specifies the Comment event type.


EndElement

ts
static EndElement: string;

Defined in: xml/index.ts

Specifies the EndElement event type.


StartElement

ts
static StartElement: string;

Defined in: xml/index.ts

Specifies the StartElement event type.


Text

ts
static Text: string;

Defined in: xml/index.ts

Specifies the Text event type.

Previous
ParserEvent