diff src/streamed-graph.ts @ 9:26d3e4860adc

working on porting graph_view to n3.js. also working on making tests run
author drewp@bigasterisk.com
date Fri, 06 Dec 2019 09:19:43 -0800
parents 6fefd287aff9
children 7ca4ff2088c3
line wrap: on
line diff
--- a/src/streamed-graph.ts	Thu Dec 05 01:32:13 2019 -0800
+++ b/src/streamed-graph.ts	Fri Dec 06 09:19:43 2019 -0800
@@ -7,7 +7,7 @@
 import { customElement, property, computed } from '@polymer/decorators';
 import { render } from 'lit-html';
 import { graphView } from './graph_view';
-import { Store, DataFactory } from "n3"
+import { N3Store } from "n3"
 
 import { StreamedGraphClient } from './streamed_graph_client';
 
@@ -17,7 +17,7 @@
     url: string = '';
 
     @property({ type: Object })
-    graph: {version: number, graph: Store};
+    graph: {version: number, graph: N3Store};
 
     @property({ type: Boolean })
     expanded: Boolean = false;