npm install --save @types/rdf-parser-csvw-xlsx
This package contains type definitions for rdf-parser-csvw-xlsx (https://github.com/rdf-ext/rdf-parser-csvw-xlsx).
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/rdf-parser-csvw-xlsx.
import { DataFactory, DatasetCore } from "@rdfjs/types";
import { Readable, Transform } from "stream";
interface ParserOptions {
metadata: DatasetCore;
baseIRI?: string;
factory?: DataFactory;
timezone?: string;
sheet?: number;
}
declare class Parser {
constructor(options: ParserOptions);
import(input: Readable, options?: ParserOptions): Transform;
static import(input: Readable, options: ParserOptions): Transform;
}
export = Parser;
- Last updated: Thu, 16 May 2024 05:35:59 GMT
- Dependencies: @rdfjs/types
These definitions were written by Tomasz Pluskiewicz.