UNPKG

@types/rdfjs__parser-n3

Version:
33 lines (24 loc) 1.11 kB
# Installation > `npm install --save @types/rdfjs__parser-n3` # Summary This package contains type definitions for @rdfjs/parser-n3 (https://github.com/rdfjs-base/parser-n3). # Details Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/rdfjs__parser-n3. ## [index.d.ts](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/rdfjs__parser-n3/index.d.ts) ````ts import { BaseQuad, DataFactory, Quad, Sink, Stream } from "@rdfjs/types"; import { EventEmitter } from "events"; export interface ParserOptions { baseIRI?: string | 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 * Last updated: Mon, 08 Jan 2024 20:35:39 GMT * Dependencies: [@rdfjs/types](https://npmjs.com/package/@rdfjs/types) # Credits These definitions were written by [tpluscode](https://github.com/tpluscode).