Installation
npm install --save @types/rdfjs__parser-jsonld
Summary
This package contains type definitions for @rdfjs/parser-jsonld (https://github.com/rdfjs-base/parser-jsonld).
Details
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/rdfjs__parser-jsonld.
import { Context } from 'jsonld/jsonld-spec';
import { DataFactory, Sink, Stream, BaseQuad, Quad } from 'rdf-js';
import { EventEmitter } from 'events';
export interface ParserOptions {
baseIRI?: string | undefined;
context?: Context | undefined;
factory?: DataFactory | undefined;
}
export default class Parser<Q extends BaseQuad = Quad> implements Sink<EventEmitter, Stream<Q>> {
constructor(options?: ParserOptions);
import(stream: EventEmitter, options?: ParserOptions): Stream<Q>;
}
Additional Details
Credits
These definitions were written by Chris Wilkinson, and tpluscode.