@federicocarboni/saxe
    Preparing search index...

    Interface QName

    A qualified XML name for elements or attributes.

    interface QName {
        localName: string;
        name: string;
        namespace?: string;
        prefix?: string;
    }
    Index

    Properties

    localName: string

    Local part of the name.

    name: string

    Qualified name of the element or attribute.

    namespace?: string

    Namespace URI, if any.

    prefix?: string

    Prefix part of the name, if any.