UNPKG

graphdb

Version:

Javascript client library supporting GraphDB and RDF4J REST API.

17 lines (16 loc) 340 B
export = TurtleParser; /** * Parse turtle data to triple/quads * * @class * @author Mihail Radkov * @author Svilen Velikov */ declare class TurtleParser extends ContentParser { parser: any; /** * @inheritDoc */ parse(content: any, config: any): any; } import ContentParser = require("../parser/content-parser");