rdflib
Version:
an RDF library for node.js. Suitable for client and server side.
17 lines (16 loc) • 771 B
TypeScript
import Formula from './formula';
import { ContentType } from './types';
type CallbackFunc = (error: any, kb: Formula | null) => void;
/**
* Parse a string and put the result into the graph kb.
* Normal method is sync.
* Unfortunately jsdonld is currently written to need to be called async.
* Hence the mess below with executeCallback.
* @param str - The input string to parse
* @param kb - The store to use
* @param base - The base URI to use
* @param contentType - The MIME content type string for the input - defaults to text/turtle
* @param [callback] - The callback to call when the data has been loaded
*/
export default function parse(str: string, kb: Formula, base: string, contentType?: string | ContentType, callback?: CallbackFunc): void;
export {};