Files
nodes/packages/graph-interface/src/lib/graph/context.ts

7 lines
184 B
TypeScript

import type { GraphManager } from "../graph-manager.js";
import { getContext } from "svelte";
export function getGraphManager(): GraphManager {
return getContext("graphManager");
}