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
438 B

import type { GraphType } from "./types";
import type { InteractOptions } from "./util/createInteractOptions";
import { createInteractOptions } from "./util/createInteractOptions";
/**
* 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: GraphType[]): InteractOptions {
return createInteractOptions("writeGraphs", graphs);
}