diff src/streamed-graph.ts @ 31:e54941d93356

mostly config fixes to try to make this pkg usable by others (not working yet)
author drewp@bigasterisk.com
date Tue, 17 Dec 2019 23:13:01 -0800
parents e0f5da648199
children
line wrap: on
line diff
--- a/src/streamed-graph.ts	Sun Dec 15 21:21:28 2019 -0800
+++ b/src/streamed-graph.ts	Tue Dec 17 23:13:01 2019 -0800
@@ -9,6 +9,7 @@
 
 import { GraphView } from './graph_view';
 import { StreamedGraphClient } from './streamed_graph_client';
+export { StreamedGraphClient } from './streamed_graph_client';
 
 interface VersionedGraph { version: number, store: N3Store | undefined };
 
@@ -57,7 +58,7 @@
         }
     }
 
-    toggleExpand(ev: Event) {
+    toggleExpand() {
         this.expanded = !this.expanded;
         if (this.expanded) {
             this.redrawGraph()