fix(ts_web): resolve TypeScript nullability and event typing issues across web components
This commit is contained in:
@@ -228,7 +228,7 @@ body > div[style*="top: -50000px"][style*="width: 50000px"] {
|
||||
const module = await import(/* @vite-ignore */ url);
|
||||
|
||||
this.highlightJsLib = module.default;
|
||||
return this.highlightJsLib;
|
||||
return this.highlightJsLib!;
|
||||
})();
|
||||
|
||||
return this.highlightJsLoadingPromise;
|
||||
@@ -252,7 +252,7 @@ body > div[style*="top: -50000px"][style*="width: 50000px"] {
|
||||
const module = await import(/* @vite-ignore */ url);
|
||||
|
||||
this.apexChartsLib = module.default;
|
||||
return this.apexChartsLib;
|
||||
return this.apexChartsLib!;
|
||||
})();
|
||||
|
||||
return this.apexChartsLoadingPromise;
|
||||
|
||||
Reference in New Issue
Block a user