A QName object is a JavaScript object that represents a qualified name as defined in the XML specifications.

interface QName {
    localPart: string;
    namespace: string;
    prefix: string;
}

Properties

localPart: string

The local part

namespace: string

The namespace.

prefix: string

The prefix.