edgeport - v1.0.6
    Preparing search index...

    Type Alias StreamEvent

    StreamEvent:
        | { element: XmlElement; type: "open" }
        | { element: XmlElement; type: "element" }
        | { type: "close" }

    A structural event produced by XmlStreamReader.readEvent.

    • open: the stream root (<stream:stream ...>) opened; it never closes normally, so it is reported on its own rather than as a completed element.
    • element: a complete top-level stanza (a direct child of the stream root) closed.
    • close: the stream root closed (</stream:stream>).

    1.0.4