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); }