Prelude API
    Preparing search index...

    Type Alias Name

    A qualified name after namespace processing.

    prefix is the part before the colon ('' when unprefixed) and local the part after it. namespace is the URI the prefix is bound to — for an unprefixed element name the default namespace in scope — or undefined when there is none. Unprefixed attribute names never have a namespace.

    type Name = {
        local: string;
        namespace: undefined | string;
        prefix: string;
    }
    Index
    local: string
    namespace: undefined | string
    prefix: string