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.
12 lines
451 B
12 lines
451 B
import type { GraphNode } from "@ldo/rdf-utils";
|
|
import type { InteractOptions } from "./util/createInteractOptions.js";
|
|
import { createInteractOptions } from "./util/createInteractOptions.js";
|
|
|
|
/**
|
|
* Set the graphs that should be written to
|
|
* @param graphs The graphs that should be written to
|
|
* @returns a write builder
|
|
*/
|
|
export function write(...graphs: GraphNode[]): InteractOptions {
|
|
return createInteractOptions("writeGraphs", graphs);
|
|
}
|
|
|