Amazon Vinyl
    Preparing search index...

    Interface QName

    An XML name for an element or attribute.

    interface QName {
        localPart: string;
        namespaceUri: string | null;
        prefix: string | null;
        qName: string;
    }
    Index
    localPart: string

    The local part of this name.

    namespaceUri: string | null

    The resolved xmlns uri for the associated prefix.

    prefix: string | null

    The xmlns prefix.

    qName: string

    The fully qualified name. This will be the prefixed name or the unprefixed name if the prefix is empty. The prefixed name will be prefix ':' localPart