@prefecthq/graphs 2.2.1 → 2.2.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -12,6 +12,10 @@ export declare function isArtifactSelection(selection: GraphItemSelection): sele
|
|
|
12
12
|
export type ArtifactsSelection = {
|
|
13
13
|
kind: 'artifacts';
|
|
14
14
|
ids: string[];
|
|
15
|
+
position?: {
|
|
16
|
+
x: number;
|
|
17
|
+
y: number;
|
|
18
|
+
};
|
|
15
19
|
};
|
|
16
20
|
export declare function isArtifactsSelection(selection: GraphItemSelection): selection is ArtifactsSelection;
|
|
17
21
|
export type GraphItemSelection = NodeSelection | ArtifactSelection | ArtifactsSelection;
|