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