2.0.5 • Published 4 months ago

@types/rdf-transform-triple-to-quad v2.0.5

Weekly downloads
517
License
MIT
Repository
github
Last release
4 months ago

Installation

npm install --save @types/rdf-transform-triple-to-quad

Summary

This package contains type definitions for rdf-transform-triple-to-quad (https://github.com/rdf-ext/rdf-transform-triple-to-quad).

Details

Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/rdf-transform-triple-to-quad.

index.d.ts

// Type definitions for rdf-transform-triple-to-quad 1.0
// Project: https://github.com/rdf-ext/rdf-transform-triple-to-quad
// Definitions by: tpluscode <https://github.com/tpluscode>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped

import { Transform } from 'stream';
import { Quad_Graph, DataFactory, BaseQuad, Quad, Stream } from 'rdf-js';

declare namespace TripleToQuadTransform {
    interface TripleToQuadTransformOptions {
        factory: DataFactory;
    }
}

declare class TripleToQuadTransform<Q extends BaseQuad = Quad> extends Transform implements Stream<Q> {
    constructor(graph?: Quad_Graph | string, options?: TripleToQuadTransform.TripleToQuadTransformOptions);
}

export = TripleToQuadTransform;

Additional Details

  • Last updated: Thu, 03 Jun 2021 17:02:05 GMT
  • Dependencies: @types/rdf-js
  • Global values: none

Credits

These definitions were written by tpluscode.

2.0.5

4 months ago

2.0.3

7 months ago

2.0.2

7 months ago

2.0.4

6 months ago

2.0.1

8 months ago

2.0.0

8 months ago

1.0.2

3 years ago

1.0.1

3 years ago

1.0.0

4 years ago