2019-09-13 22:54:21 +02:00
|
|
|
// A dependency graph that contains any wasm must all be imported
|
|
|
|
// asynchronously. This `bootstrap.js` file does the single async import, so
|
|
|
|
// that no one else needs to worry about it again.
|
2019-09-17 18:27:44 +02:00
|
|
|
// Import index.js that executes index.ts
|
2020-03-27 15:30:54 +01:00
|
|
|
var h = (_a, _b) => { }
|
2020-03-27 15:26:04 +01:00
|
|
|
|
|
|
|
export function handle(loc, e) {
|
|
|
|
h(loc, e);
|
|
|
|
}
|
|
|
|
|
2020-03-27 15:30:54 +01:00
|
|
|
import("./index.js")
|
|
|
|
.then(e => {
|
2020-03-27 15:26:04 +01:00
|
|
|
h = e.handle;
|
|
|
|
})
|
|
|
|
.catch(e => console.error("Error importing `index.js`:", e));
|