@faubulous/mentor-rdf-serializers
    Preparing search index...

    Interface SourceMapEntry

    Source map entry for tracking output to input position mapping.

    interface SourceMapEntry {
        inputLength?: number;
        inputOffset?: number;
        outputLength: number;
        outputOffset: number;
        type:
            | "iri"
            | "prefixedName"
            | "blankNode"
            | "literal"
            | "keyword"
            | "punctuation"
            | "variable";
    }
    Index

    Properties

    inputLength?: number

    Length of the input segment.

    inputOffset?: number

    Input position (character offset in the source, if available).

    outputLength: number

    Length of the serialized segment.

    outputOffset: number

    Output position (character offset in the serialized string).

    type:
        | "iri"
        | "prefixedName"
        | "blankNode"
        | "literal"
        | "keyword"
        | "punctuation"
        | "variable"

    Type of the serialized element.