@dokieli/notifications - v1.1.0
    Preparing search index...

    Type Alias JSONLDParser

    type JSONLDParser = {
        mediaTypes?: string[];
        (
            input: unknown,
            options?: { baseIRI?: string; contentType?: string },
        ): JSONLDNode | JSONLDNode[] | Promise<JSONLDNode | JSONLDNode[]>;
    }
    Index
    mediaTypes?: string[]

    media types this parser reads, in preference order. Drives the default Accept header (declared types first, then the native JSON-LD flavors) and routes matching responses to this parser instead of the built-in one. When omitted, the parser receives every response the library cannot read natively.