NetanelBasal
2/9/2018 - 8:25 AM

widget-rx.component.ts

fromEvent(button, "click").pipe(
  tap(() => this.loading = true),
  concatMap(() => import("xlsx")),
  tap(() => this.loading = false),
).subscribe(xlsx => {
  // USE THE LIBRARY
});