-
Notifications
You must be signed in to change notification settings - Fork 111
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
iterating on visual overview differencing (#803)
- Loading branch information
1 parent
348e86e
commit d020851
Showing
2 changed files
with
9 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,7 +6,7 @@ export class VisualOverview { | |
edges: Edge[]; | ||
} | ||
|
||
const buildVisualizerGraph = (overview: Overview): VisualOverview => { | ||
export const buildVisualOverview = (overview: Overview): VisualOverview => { | ||
let out = new VisualOverview(); | ||
out.nodes = [ | ||
{ id: "0", position: { x: 0, y: 0 }, data: { label: "[email protected]" }, type: "account" } | ||
|
@@ -90,4 +90,6 @@ const buildVisualizerGraph = (overview: Overview): VisualOverview => { | |
return out; | ||
} | ||
|
||
export default buildVisualizerGraph; | ||
export const visualOverviewsEqual = (a: VisualOverview, b: VisualOverview): boolean => { | ||
return false; | ||
} |