# HG changeset patch # User drewp@bigasterisk.com # Date 1575450393 28800 # Node ID a5bc13dcce4192fe60bf4632e5faf00ba15b948f # Parent 8aa42fa04b1728886ab63b6f8cf032d8569264d0 why does import work but accessing the imported thing make it say "Module not found"? diff -r 8aa42fa04b17 -r a5bc13dcce41 src/streamed-graph.ts --- a/src/streamed-graph.ts Wed Dec 04 00:32:24 2019 -0800 +++ b/src/streamed-graph.ts Wed Dec 04 01:06:33 2019 -0800 @@ -12,6 +12,8 @@ import { StreamedGraphClient } from './streamed_graph_client'; +console.log(StreamedGraphClient); + @customElement('streamed-graph') class StreamedGraph extends PolymerElement { @property({ type: String }) diff -r 8aa42fa04b17 -r a5bc13dcce41 src/streamed_graph_client.ts --- a/src/streamed_graph_client.ts Wed Dec 04 00:32:24 2019 -0800 +++ b/src/streamed_graph_client.ts Wed Dec 04 01:06:33 2019 -0800 @@ -106,10 +106,6 @@ patchGraph(patchJson: string, done: () => void) { var patch = JSON.parse(patchJson).patch; - // if (!this.store) { - // throw new Error('store ' + this.store); - // } - async.series([ // (done) => { // eachJsonLdQuad(this.store.rdf, patch.deletes,