diff src/index.ts @ 42:895ae7c5b0f4

don't pile all the deps in our sharable library. other fixes to make it work as a dep.
author drewp@bigasterisk.com
date Wed, 01 Jan 2020 19:39:57 -0800
parents d4036715028b
children bcccfcb037ab
line wrap: on
line diff
--- a/src/index.ts	Wed Jan 01 12:55:35 2020 -0800
+++ b/src/index.ts	Wed Jan 01 19:39:57 2020 -0800
@@ -1,14 +1,10 @@
-// these are just for timebank- move them out
-import "@polymer/polymer/lib/elements/dom-bind.js";
-
+import { customElement, property, computed } from "@polymer/decorators";
+import { N3Store } from "n3";
 import { PolymerElement, html } from "@polymer/polymer";
 import { render } from "lit-html";
-import { N3Store } from "n3";
-import { customElement, property, computed } from "@polymer/decorators";
 
 import { GraphView } from "./graph_view";
 import { StreamedGraphClient } from "./streamed_graph_client";
-export { StreamedGraphClient } from "./streamed_graph_client";
 
 export interface VersionedGraph {
   version: number;