diff src/index.ts @ 128:5a1a79f54779

big rewrite
author drewp@bigasterisk.com
date Fri, 05 May 2023 21:26:36 -0700
parents 042bd3361339
children
line wrap: on
line diff
--- a/src/index.ts	Fri May 05 21:23:44 2023 -0700
+++ b/src/index.ts	Fri May 05 21:26:36 2023 -0700
@@ -1,3 +1,5 @@
-import { StreamedGraph } from "./render/StreamedGraph";
+import { StreamedGraph } from "./elements/streamed-graph/StreamedGraph";
+import { SgSource } from "./elements/streamed-graph/SgSource";
+import { SgView } from "./elements/streamed-graph/SgView";
 
-export {StreamedGraph}
+export { StreamedGraph, SgSource, SgView };