Appreciate your write up. How do I make it work in my scenario below.
I already have import { defineCustomElements } from '@ionic/pwa-elements/loader'; statement in main.ts file.
How do i add import { defineCustomElements } from '@teamhive/lottie-player/loader'; in this case?
Could you please help? I'm using Ionic 5
Appreciate your write up. How do I make it work in my scenario below.
I already have
import { defineCustomElements } from '@ionic/pwa-elements/loader';statement inmain.tsfile.How do i add
import { defineCustomElements } from '@teamhive/lottie-player/loader';in this case?Could you please help? I'm using
Ionic 5With TypeScript, you can import a class/const/etc. with an alias, to avoid name collision.
For example, you could do this:
You can name the variable whatever you'd like, with the
assyntax.