UNPKG

@types/rdfjs__serializer-jsonld

Version:
32 lines (23 loc) 1.19 kB
# Installation > `npm install --save @types/rdfjs__serializer-jsonld` # Summary This package contains type definitions for @rdfjs/serializer-jsonld (https://github.com/rdfjs-base/serializer-jsonld). # Details Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/rdfjs__serializer-jsonld. ## [index.d.ts](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/rdfjs__serializer-jsonld/index.d.ts) ````ts import { BaseQuad, Quad, Sink, Stream } from "@rdfjs/types"; import { EventEmitter } from "events"; export interface SerializerOptions { encoding?: "string" | "object" | undefined; } export default class Serializer<Q extends BaseQuad = Quad> implements Sink<Stream<Q>, EventEmitter> { constructor(options?: SerializerOptions); import(stream: Stream<Q>, options?: SerializerOptions): EventEmitter; } ```` ### 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 [Chris Wilkinson](https://github.com/thewilkybarkid), and [tpluscode](https://github.com/tpluscode).