/** * @license * Copyright 2024 Google LLC * SPDX-License-Identifier: Apache-2.0 */ import type { EditableGraphSelectionResult, InspectableGraph, NodeIdentifier } from "@breadboard-ai/types"; export { computeSelection }; /** * Creates a selection: a list of nodes and edges that will are associated * with the given list of node identifiers within the graph. * The selection is transient in that it only applies to the current version * of the graph and becomes invalid as soon as the graph mutates. * * @param nodes -- nodes to include in the selection */ declare function computeSelection(graph: InspectableGraph, nodes: NodeIdentifier[]): EditableGraphSelectionResult; //# sourceMappingURL=selection.d.ts.map