You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
ldo-compact-fork/packages/connected/src/util/splitChangesByGraph.d.ts

5 lines
363 B

import type { GraphNode, DatasetChanges } from "@ldo/rdf-utils";
import type { Quad } from "@rdfjs/types";
export declare function graphNodeToString(graphNode: GraphNode): string;
export declare function stringToGraphNode(input: string): GraphNode;
export declare function splitChangesByGraph(changes: DatasetChanges<Quad>): Map<GraphNode, DatasetChanges<Quad>>;