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;