@metreeca/trio - v0.1.1
    Preparing search index...

    Type Alias Typed

    An RDF typed literal.

    Pairs the lexical form with the IRI of its XSD (or user-defined) datatype. Per RDF 1.1, a literal with no datatype IRI is interpreted as xsd:string: datatype is always present, carrying that IRI explicitly for a plain literal, so readers never test for its absence. One of the literal forms making up Term. Construct one with typed.

    type Typed = {
        kind: "typed";
        text: string;
        datatype: IRI;
    }
    Index
    kind: "typed"
    text: string
    datatype: IRI