From 54ea233e002a79c4be2af24e051e2d0da778886d Mon Sep 17 00:00:00 2001 From: Jonas Erbe Date: Mon, 8 Apr 2019 11:37:32 +0200 Subject: [PATCH] Changed placeholder type RdfDataSet from "any" to "object". --- types/jsonld/index.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/types/jsonld/index.d.ts b/types/jsonld/index.d.ts index 20e541a75d..2dee309455 100644 --- a/types/jsonld/index.d.ts +++ b/types/jsonld/index.d.ts @@ -8,7 +8,7 @@ import { Context, JsonLd, Document, Url, JsonLdProcessor, RemoteDocument } from // Some typealiases for better readability and some placeholders type MimeNQuad = 'application/n-quads'; -type RdfDataSet = any; +type RdfDataSet = object; // Placeholder type RdfOrString = RdfDataSet|string; type Callback = (err: Error, res: T) => void; type DocCallback = Callback;