We're a place where coders share, stay up-to-date and grow their careers.
With TypeScript, you can import a class/const/etc. with an alias, to avoid name collision.
For example, you could do this:
import { defineCustomElements as defineLottieCustomElements } from '@teamhive/lottie-player/loader'; defineLottieCustomElements(window);
You can name the variable whatever you'd like, with the as syntax.
as
With 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
as
syntax.