# HG changeset patch # User drewp@bigasterisk.com # Date 1577677405 28800 # Node ID d4036715028b6d831d0015b9628f091aad47542c # Parent 6a1d158d6ca42eddee2c1ec92e1eeb3c1cbafe83 try exporting the PolymerElement so it can be depended on and therefore not culled by tree-shaking diff -r 6a1d158d6ca4 -r d4036715028b src/index.ts --- a/src/index.ts Sun Dec 29 19:42:52 2019 -0800 +++ b/src/index.ts Sun Dec 29 19:43:25 2019 -0800 @@ -10,13 +10,13 @@ import { StreamedGraphClient } from "./streamed_graph_client"; export { StreamedGraphClient } from "./streamed_graph_client"; -interface VersionedGraph { +export interface VersionedGraph { version: number; store: N3Store | undefined; } @customElement("streamed-graph") -class StreamedGraph extends PolymerElement { +export class StreamedGraph extends PolymerElement { @property({ type: String }) url: string = "";